-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESP devices buildup.drawio
4798 lines (4798 loc) · 608 KB
/
ESP devices buildup.drawio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="Electron" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.7.17 Chrome/128.0.6613.36 Electron/32.0.1 Safari/537.36" version="24.7.17" pages="13">
<diagram id="C5RBs43oDa-KdzZeNtuy" name="ESPDevices">
<mxGraphModel dx="2261" dy="836" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="WIyWlLk6GJQsqaUBKTNV-0" />
<mxCell id="WIyWlLk6GJQsqaUBKTNV-1" parent="WIyWlLk6GJQsqaUBKTNV-0" />
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-78" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-820" y="610" width="620.5" height="1320" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="49dJtlqcgEC1c8cfWTm2-7" target="49dJtlqcgEC1c8cfWTm2-0" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-7" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="290" y="794" width="120" height="126" as="geometry" />
</mxCell>
<mxCell id="OJJ_GLkhKoJh-MWgpFoF-0" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="WIyWlLk6GJQsqaUBKTNV-1" source="49dJtlqcgEC1c8cfWTm2-6" target="49dJtlqcgEC1c8cfWTm2-0">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-6" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="55" y="794" width="220" height="136" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-41" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-820" y="50" width="480" height="530" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-20" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-93" y="50" width="385" height="250" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-0" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-63" y="160" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-4" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-3" y="200" as="targetPoint" />
<Array as="points">
<mxPoint x="80" y="104" />
<mxPoint x="80" y="200" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-4" target="F0W8u3M6W5kvR-qd7q4k-16" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-4" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="154.5" y="74" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-5" value="upload data" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="187" y="89" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-7" value="<h1 style="margin-top: 0px;">ESPTouch</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-329.5" y="1874" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-9" value="<span style="background-color: rgb(255, 255, 255);">Database</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-63" y="210" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-10" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="157" y="90" as="targetPoint" />
<Array as="points">
<mxPoint x="40" y="90" />
<mxPoint x="40" y="90" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-10" value="<span style="background-color: rgb(255, 255, 255);">EEPROM</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-63" y="64" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-14" value="system classes" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-85.5" y="400" width="270" height="280" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-15" value="<span style="background-color: rgb(255, 128, 0);">designed class</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="30" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-16" value="<span style="background-color: rgb(255, 128, 0);">data class</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="60" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-30" value="<span style="background-color: rgb(255, 128, 0);">wifi class (only 1 can connect)</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="90" width="270" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-17" value="&nbsp;<span style="background-color: rgb(255, 255, 0);">eeprom read/write class</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="130" width="270" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-18" value="<span style="background-color: rgb(255, 255, 0);">serial read/write class</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="170" width="270" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-19" value="<span style="background-color: rgb(51, 255, 51);">SD read/write class (</span><span style="background-color: rgb(255, 255, 51);">error logging</span><span style="background-color: rgb(51, 255, 51);">)</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="210" width="270" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-34" value="<span style="background-color: rgb(255, 255, 0);">needed function</span>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-14" vertex="1">
<mxGeometry y="250" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-21" value="<h1 style="margin-top: 0px;">Init task</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="179.5" y="250" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-24" value="" style="curved=1;endArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;strokeColor=#FF0000;strokeWidth=3;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-33" y="240" as="sourcePoint" />
<mxPoint x="-85.5" y="475.0000000000001" as="targetPoint" />
<Array as="points">
<mxPoint x="-40" y="300" />
<mxPoint x="-90" y="340" />
<mxPoint x="-140" y="370" />
<mxPoint x="-140" y="460" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-26" value="Designed class" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="214.5" y="400" width="140" height="120" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-27" value="desiged elements" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-26" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-35" value="active window" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-26" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-28" value="needed function" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-26" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-31" value="data class" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="380" y="400" width="280" height="90" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-32" value="datas ({tmps, humadity}, {HType, Switch}, clock hour+min, programs ) diff classes" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-31" vertex="1">
<mxGeometry y="30" width="280" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-33" value="needed function" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-31" vertex="1">
<mxGeometry y="60" width="280" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-39" target="q5UfMPJFZLPRmLqAX2Nt-43" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-39" value="Device switched ON!" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-805" y="80" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-42" value="<h1 style="margin-top: 0px;">System flow</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-490" y="540" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-50" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-43" target="q5UfMPJFZLPRmLqAX2Nt-49" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-43" value="Init task" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-560" y="70" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-54" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-45" target="q5UfMPJFZLPRmLqAX2Nt-53" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-45" value="main task" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-730" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-56" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-46" target="q5UfMPJFZLPRmLqAX2Nt-55" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-46" value="wifi task" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-510" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-51" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-49" target="q5UfMPJFZLPRmLqAX2Nt-45" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-380" y="170" />
<mxPoint x="-670" y="170" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-52" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-49" target="q5UfMPJFZLPRmLqAX2Nt-46" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-380" y="170" />
<mxPoint x="-450" y="170" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-49" value="end<div>Init task</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-410" y="70" width="60" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-103" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-53" target="q5UfMPJFZLPRmLqAX2Nt-99" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-53" value="end<div>main task</div>" style="rounded=1;whiteSpace=wrap;html=1;fillStyle=auto;fillColor=#FFFFFF;perimeterSpacing=1;shadow=0;glass=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-705" y="300" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-104" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-55" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-560" y="410" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-55" value="end<div>wifi task</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-480" y="290" width="60" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-59" value="" style="endArrow=none;dashed=1;html=1;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-540" y="185" as="sourcePoint" />
<mxPoint x="-540" y="370" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-62" value="" style="endArrow=none;dashed=1;html=1;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-359" y="185" as="sourcePoint" />
<mxPoint x="-359" y="370" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-64" value="" style="endArrow=none;dashed=1;html=1;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-360" y="185" as="sourcePoint" />
<mxPoint x="-540" y="185" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-65" value="" style="endArrow=none;dashed=1;html=1;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-360" y="370" as="sourcePoint" />
<mxPoint x="-540" y="370" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-79" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-800" y="630" width="385" height="220" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-80" value="<h1 style="margin-top: 0px;">main task</h1><div><br></div>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-540" y="810" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-81" value="<div><br></div><div>-touch sensing</div><div>-design print (active window)</div><div>if user not touch for a min switch off lcd, and load an empty screen&nbsp;</div><div>if empty screen touched load screen 1</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-775" y="680" width="260" height="100" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-83" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-800" y="890" width="390" height="330" as="geometry" />
</mxCell>
<mxCell id="TKA_kCdKP-ovWJGplUV2-3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-84" target="TKA_kCdKP-ovWJGplUV2-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-84" value="-wifi connection checking<div>-receiveing?</div><div>-send changed data!</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-760" y="935" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-108" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-800" y="1325" width="390" height="270" as="geometry" />
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-87" target="q5UfMPJFZLPRmLqAX2Nt-111" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-87" value="serial communication" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-760" y="1415" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-88" value="<span style="background-color: rgb(255, 255, 0);">EEPROM</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-570" y="1405" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-89" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-87" target="q5UfMPJFZLPRmLqAX2Nt-88" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-610" y="1355" as="sourcePoint" />
<mxPoint x="-560" y="1305" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-90" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-87" target="q5UfMPJFZLPRmLqAX2Nt-87" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-695" y="1495" />
<mxPoint x="-450" y="1495" />
<mxPoint x="-450" y="1375" />
<mxPoint x="-695" y="1375" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-91" value="while input != "quit "" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-695" y="1345" width="175" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-96" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-81" target="q5UfMPJFZLPRmLqAX2Nt-81" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-645" y="800" />
<mxPoint x="-470" y="800" />
<mxPoint x="-470" y="660" />
<mxPoint x="-645" y="660" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-97" value="<span style="background-color: rgb(102, 255, 255);">if enabled</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-760" y="930" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-113" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-99" target="q5UfMPJFZLPRmLqAX2Nt-112" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-99" value="serail task" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-620" y="390" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-105" value="<h1 style="margin-top: 0px;">wifi task</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-520" y="1170" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-110" value="<h1 style="margin-top: 0px;">Serial task</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-540" y="1555" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-111" value="End task" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-760" y="1515" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="q5UfMPJFZLPRmLqAX2Nt-112" target="q5UfMPJFZLPRmLqAX2Nt-43" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-780" y="520" />
<mxPoint x="-780" y="150" />
<mxPoint x="-640" y="150" />
<mxPoint x="-640" y="100" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-112" value="Reboot device!" style="rounded=1;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-620" y="490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-114" value="EEPROM container" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-305" y="400" width="140" height="180" as="geometry">
<mxRectangle x="-305" y="400" width="150" height="30" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-115" value="programs" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-114" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-116" value="active prog" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-114" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-117" value="hour, min" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-114" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-0" value="tmp offset" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-114" vertex="1">
<mxGeometry y="120" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-1" value="wifi connection datas" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="q5UfMPJFZLPRmLqAX2Nt-114" vertex="1">
<mxGeometry y="150" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="q5UfMPJFZLPRmLqAX2Nt-118" value="" style="curved=1;endArrow=classic;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;strokeColor=#FF0000;strokeWidth=3;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-63" y="110" as="sourcePoint" />
<mxPoint x="-235" y="405" as="targetPoint" />
<Array as="points">
<mxPoint x="-160" y="110" />
<mxPoint x="-230" y="175" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-10" value="<span style="background-color: rgb(255, 255, 0);">data</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-339.5" y="650" width="120" height="180" as="geometry" />
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-11" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-414.5" y="739.41" as="sourcePoint" />
<mxPoint x="-339.5" y="739.41" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-12" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-410" y="1024.41" as="sourcePoint" />
<mxPoint x="-275" y="830" as="targetPoint" />
<Array as="points">
<mxPoint x="-275" y="1024" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="F0W8u3M6W5kvR-qd7q4k-16" value="End Task" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="155" y="184" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="TKA_kCdKP-ovWJGplUV2-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="TKA_kCdKP-ovWJGplUV2-2" target="q5UfMPJFZLPRmLqAX2Nt-84" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-644.5" y="1159" />
<mxPoint x="-469.5" y="1159" />
<mxPoint x="-469.5" y="915" />
<mxPoint x="-644.5" y="915" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="TKA_kCdKP-ovWJGplUV2-2" value="Auto save to EEROM data changed<div><div>-dht mesuring</div><div>-controller for heating system comm if needed</div><div>-clock update</div><div>if wifi disabled or no-load</div></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-742.5" y="1060" width="195" height="90" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-0" value="espThouch" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="165" y="700" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-1" value="espCarryable<div>ID 0</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="70" y="807" width="95" height="43" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-8" value="espCarryable<div>ID 1<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="175" y="807" width="90" height="43" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-9" value="espCarryable<div>ID 2<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="70" y="860" width="95" height="40" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-10" value="espCarryable<div>ID 3<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="295" y="800" width="85" height="40" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-11" value="espCarryable<div>ID 4<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="295" y="850" width="85" height="40" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-14" value="<b>Heating circle 1</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="65" y="905" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-15" value="<b>Heting circle 2</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="292" y="890" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-16" value="<h1 style="margin-top: 0px;">ESPCarryable</h1><p><span style="white-space: pre;">	</span>Has MAC address</p><p><span style="white-space: pre;">	</span>MAC address could be add to heating circle, to make diff between espcarryable device&nbsp;</p><p><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span>-&gt; add nickname&nbsp; to device o.e. "Living room"</p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-90" y="1010" width="530" height="140" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-17" value="MAIN srceen" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-93" y="1180" width="280" height="215" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-18" value="<h1 style="margin-top: 0px;"><span style="font-size: 12px; font-weight: 400; text-align: center;">ESPThouch</span><br></h1><p><br></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-90" y="1170" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-19" value="program screen" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="220" y="1180" width="290" height="215" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-20" value="heating setup screen" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-93" y="1425" width="280" height="215" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-22" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="220" y="1425" width="290" height="215" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-23" value="<h1 style="margin-top: 0px;"><span style="font-size: 12px; font-weight: 400;">Srollable screen with espcarryable datas:</span></h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="220" y="1420" width="280" height="120" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-24" value="1.<span style="white-space: pre;">	</span>Nickname<span style="white-space: pre;">	</span>heating circle<span style="white-space: pre;">	</span>measured temp" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="220" y="1475" width="310" height="30" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-25" value="n.<span style="white-space: pre;">	</span>NicknameN<span style="white-space: pre;">	</span>heating circle<span style="white-space: pre;">	</span>measured temp n" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="220" y="1600" width="310" height="30" as="geometry" />
</mxCell>
<mxCell id="49dJtlqcgEC1c8cfWTm2-26" value="<b style="font-size: 16px;"><font style="font-size: 16px;">.</font></b><div style="font-size: 16px;"><b><font style="font-size: 16px;">.</font></b></div><div style="font-size: 16px;"><b><font style="font-size: 16px;">.</font></b></div><div style="font-size: 16px;"><br></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="335" y="1500" width="60" height="100" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-0" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-810.25" y="2000" width="620.5" height="1050" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-1" value="<h1 style="margin-top: 0px;">ESPCarryable</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-360.25" y="3000" width="170" height="40" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-2" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-790.25" y="2020" width="385" height="220" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-3" value="<h1 style="margin-top: 0px;">main task</h1><div><br></div>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-530.25" y="2200" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-4" value="<div><span style="background-color: initial;">dht mesuring</span></div><div><span style="background-color: initial;">-button monitoring</span><br></div><div>-design print&nbsp;</div><div>clock update<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-765.25" y="2070" width="260" height="100" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-5" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-790.25" y="2280" width="390" height="330" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-7" target="41O3nZha76jJC8vW8AOS-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-7" value="-wifi connection checking<div>-receiveing?</div><div>-send changed data!</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-750.25" y="2325" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-8" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-790.25" y="2715" width="390" height="270" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-10" target="41O3nZha76jJC8vW8AOS-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-10" value="serial communication" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-750.25" y="2805" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-11" value="<span style="background-color: rgb(255, 255, 0);">EEPROM</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-560.25" y="2795" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-12" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-10" target="41O3nZha76jJC8vW8AOS-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-600.25" y="2745" as="sourcePoint" />
<mxPoint x="-550.25" y="2695" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-10" target="41O3nZha76jJC8vW8AOS-10" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-685.25" y="2885" />
<mxPoint x="-440.25" y="2885" />
<mxPoint x="-440.25" y="2765" />
<mxPoint x="-685.25" y="2765" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-14" value="while string != "Quit / Exit"" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-685.25" y="2735" width="175" height="30" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-4" target="41O3nZha76jJC8vW8AOS-4" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-635.25" y="2190" />
<mxPoint x="-460.25" y="2190" />
<mxPoint x="-460.25" y="2050" />
<mxPoint x="-635.25" y="2050" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-16" value="<span style="background-color: rgb(102, 255, 255);">if enabled</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-750.25" y="2320" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-17" value="<h1 style="margin-top: 0px;">wifi task</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-510.25" y="2560" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-18" value="<h1 style="margin-top: 0px;">Serial task</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-530.25" y="2945" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-19" value="End task" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-750.25" y="2905" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-20" value="<span style="background-color: rgb(255, 255, 0);">data</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-329.75" y="2040" width="120" height="180" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-21" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-404.75" y="2129.41" as="sourcePoint" />
<mxPoint x="-329.75" y="2129.41" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-22" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-400.25" y="2414.41" as="sourcePoint" />
<mxPoint x="-265.25" y="2220" as="targetPoint" />
<Array as="points">
<mxPoint x="-265.25" y="2414" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-24" target="41O3nZha76jJC8vW8AOS-7" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-634.75" y="2549" />
<mxPoint x="-459.75" y="2549" />
<mxPoint x="-459.75" y="2305" />
<mxPoint x="-634.75" y="2305" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-24" value="Auto save to EEROM data changed<div><div>-</div><div>if wifi disabled or no-load</div></div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-732.75" y="2450" width="195" height="90" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-25" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-80" y="1670" width="385" height="250" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-26" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-50" y="1780" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-29" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="10" y="1820" as="targetPoint" />
<Array as="points">
<mxPoint x="93" y="1724" />
<mxPoint x="93" y="1820" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-28" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-29" target="41O3nZha76jJC8vW8AOS-34" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-29" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="167.5" y="1694" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-30" value="Save function" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="200" y="1709" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-31" value="<span style="background-color: rgb(255, 255, 0);">EEPROM</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-50" y="1830" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-32" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-33" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="170" y="1710" as="targetPoint" />
<Array as="points">
<mxPoint x="53" y="1710" />
<mxPoint x="53" y="1710" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-33" value="<span style="background-color: rgb(255, 255, 0);">Data</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-50" y="1684" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-34" value="End Task" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="168" y="1804" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-35" value="<h1 style="margin-top: 0px;">AutoSave</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="184.5" y="1880" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-36" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-794.5" y="1610" width="385" height="250" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-37" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-764.5" y="1720" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-38" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-40" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-704.5" y="1760" as="targetPoint" />
<Array as="points">
<mxPoint x="-621.5" y="1664" />
<mxPoint x="-621.5" y="1760" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-39" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-40" target="41O3nZha76jJC8vW8AOS-45" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-40" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-547" y="1634" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-41" value="if save button pushed" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-514.5" y="1649" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-42" value="<span style="background-color: rgb(255, 255, 0);">EEPROM</span>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-764.5" y="1770" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-43" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="41O3nZha76jJC8vW8AOS-44" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-544.5" y="1650" as="targetPoint" />
<Array as="points">
<mxPoint x="-661.5" y="1650" />
<mxPoint x="-661.5" y="1650" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-44" value="<span style="background-color: rgb(255, 255, 0);">Data</span>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-764.5" y="1624" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-45" value="End Task" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-546.5" y="1744" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="41O3nZha76jJC8vW8AOS-46" value="<h1 style="margin-top: 0px;">Full progs save</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-599.75" y="1820" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-0" value="TaskHandler" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
<mxGeometry x="-85.5" y="1960" width="740" height="270" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-1" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><span style="color: #0ca1a6;">TaskHandle_t</span> core1, core0;</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="30" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-2" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div><span style="color: #0ca1a6;">QueueHandle_t</span> myQueue1, myQueue0 </div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="60" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-3" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">DataHandler* data;</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="90" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-4" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">public:</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="120" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-5" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">Taskhandler()<span style="color: rgba(0, 0, 0, 0); font-family: monospace; font-size: 0px; white-space-collapse: collapse; background-color: initial;">%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CmxCell%20id%3D%222%22%20value%3D%22%26lt%3Bdiv%20style%3D%26quot%3Bcolor%3A%20rgb(218%2C%20227%2C%20227)%3B%20background-color%3A%20rgb(31%2C%2039%2C%2042)%3B%20font-family%3A%20Consolas%2C%20%26amp%3Bquot%3BCourier%20New%26amp%3Bquot%3B%2C%20monospace%3B%20font-size%3A%2014px%3B%20line-height%3A%2019px%3B%20white-space%3A%20pre%3B%26quot%3B%26gt%3Bmain%26lt%3B%2Fdiv%26gt%3B%22%20style%3D%22text%3BstrokeColor%3Dnone%3BfillColor%3Dnone%3Balign%3Dleft%3BverticalAlign%3Dmiddle%3BspacingLeft%3D4%3BspacingRight%3D4%3Boverflow%3Dhidden%3Bpoints%3D%5B%5B0%2C0.5%5D%2C%5B1%2C0.5%5D%5D%3BportConstraint%3Deastwest%3Brotatable%3D0%3BwhiteSpace%3Dwrap%3Bhtml%3D1%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%2260%22%20y%3D%22180%22%20width%3D%22740%22%20height%3D%2230%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E</span></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="150" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-8" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">Taskhandler()<span style="color: rgba(0, 0, 0, 0); font-family: monospace; font-size: 0px; white-space-collapse: collapse; background-color: initial;">%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CmxCell%20id%3D%222%22%20value%3D%22%26lt%3Bdiv%20style%3D%26quot%3Bcolor%3A%20rgb(218%2C%20227%2C%20227)%3B%20background-color%3A%20rgb(31%2C%2039%2C%2042)%3B%20font-family%3A%20Consolas%2C%20%26amp%3Bquot%3BCourier%20New%26amp%3Bquot%3B%2C%20monospace%3B%20font-size%3A%2014px%3B%20line-height%3A%2019px%3B%20white-space%3A%20pre%3B%26quot%3B%26gt%3Bmain%26lt%3B%2Fdiv%26gt%3B%22%20style%3D%22text%3BstrokeColor%3Dnone%3BfillColor%3Dnone%3Balign%3Dleft%3BverticalAlign%3Dmiddle%3BspacingLeft%3D4%3BspacingRight%3D4%3Boverflow%3Dhidden%3Bpoints%3D%5B%5B0%2C0.5%5D%2C%5B1%2C0.5%5D%5D%3BportConstraint%3Deastwest%3Brotatable%3D0%3BwhiteSpace%3Dwrap%3Bhtml%3D1%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%2260%22%20y%3D%22180%22%20width%3D%22740%22%20height%3D%2230%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E</span></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="180" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-6" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">main</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="210" width="740" height="30" as="geometry" />
</mxCell>
<mxCell id="i0-ZIS1EwY6Ac8GPjs2G-7" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">Task1, Task2,Task3 etc...</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="i0-ZIS1EwY6Ac8GPjs2G-0" vertex="1">
<mxGeometry y="240" width="740" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="CrFBSqWXZQhCxTYY6MAk" name="DataHandler">
<mxGraphModel dx="1909" dy="1129" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="1WRcOF-GlIY8BhzdRWrr-1" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry width="410" height="410" as="geometry" />
</mxCell>
<mxCell id="1WRcOF-GlIY8BhzdRWrr-2" value="<h1 style="margin-top: 0px;">Data Container obj (<span style="background-color: rgb(0, 255, 0);">espcarry</span>/<font style="background-color: rgb(255, 255, 255);" color="#0000ff">esptouch</font>)</h1><p></p><ul><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">Temp:(class variable)</font></span></li><ul><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">offset</font></span></li><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">wanted tmp, if set by user (stay usermode while !switch heat state )else( follow to program)</font></span></li><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">wtmp changed(bool)</font></span></li></ul><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">Clock:(class variable)</font></span></li><ul><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">hour</font></span></li><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">min</font></span></li><li><font color="#0000ff">changed bool</font></li></ul><li><font color="#0000ff">Heating: (class variable)</font></li><ul><li><font color="#0000ff">mode, and witch (bool vars)</font></li><li><font color="#0000ff">heating circle-&gt;ID1 ID2...</font></li><li><font color="#0000ff">Modbus communication:(class variable)</font></li><ul><li><font color="#0000ff">data frame:&nbsp;</font></li><ul><li><font color="#0000ff">heating mode(gas, or&nbsp; heat pump heating)</font></li><ul><li><font color="#0000ff">if changed, then send</font></li></ul><li><span style="background-color: rgb(0, 255, 0);"><font color="#0000ff">switch on/off</font></span></li></ul></ul></ul><li><font color="#0000ff">Program:(class variable)</font></li><ul><li><font color="#0000ff"><span style="background-color: rgb(0, 255, 0);">active program</span>:&nbsp;</font></li><ul><li><font color="#0000ff">1 to 5</font></li></ul><li><font color="#0000ff">programs[24]*5</font></li><li><font color="#0000ff">activeprog changed (bool)</font></li><li><font color="#0000ff">progsChanged (bool)</font></li></ul></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry width="410" height="410" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-1" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="70" y="870" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=1;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="Dd7WwTdcWaoNbeUuBdqV-2" target="Dd7WwTdcWaoNbeUuBdqV-6" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="310" y="910" />
<mxPoint x="310" y="810" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-2" value="<h1 style="margin-top: 0px;"><font style="background-color: rgb(255, 255, 255);" color="#0000ff">EspCarryables class</font></h1><p></p><ul><li><span style="background-color: rgb(255, 255, 255);">MAC</span></li><li><span style="background-color: rgb(255, 255, 255);">index in wificlient array</span></li><li><span style="background-color: rgb(255, 255, 255);">(Heating circle ID)</span></li><li><span style="background-color: rgb(255, 255, 255);">NickName<br></span></li><li><span style="background-color: rgb(255, 255, 255);">measured temp by espcarry</span></li><li><span style="background-color: rgb(255, 255, 255);">changed(bool)</span></li></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="70" y="870" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-5" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="70" y="690" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=1;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="Dd7WwTdcWaoNbeUuBdqV-6" target="Dd7WwTdcWaoNbeUuBdqV-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-6" value="<h1 style="margin-top: 0px;"><font color="#0000ff">Heating circle class</font></h1><p></p><ul><li>ESPCarryable class array</li><li>numberOfDevices</li><li>switch(on/off the circle heating)</li><li>temp class(esptouch)</li><li>heating step</li></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="70" y="690" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-7" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="70" y="505" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-8" value="<h1 style="margin-top: 0px;"><font color="#0000ff">Heating class</font></h1><p></p><ul><li>Heating circle class array</li><li>numberOfcircle</li><li>heating mode</li><li>modbus comm (bool),slaveID</li></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="70" y="505" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.439;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="Dd7WwTdcWaoNbeUuBdqV-8" target="1WRcOF-GlIY8BhzdRWrr-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-12" value="Could be setted via Serial Task:<div><ul><li>number of heating circle&nbsp;</li><li>device heating circle NickName</li><li>heating switch temp step</li></ul></div>" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="190" y="400" width="201" height="140" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-14" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="330" y="505" width="220" height="175" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="Dd7WwTdcWaoNbeUuBdqV-15" target="1WRcOF-GlIY8BhzdRWrr-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-16" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="580" y="505" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-17" value="<h1 style="margin-top: 0px;"><font style="background-color: rgb(0, 255, 0);" color="#0000ff">Clock class</font></h1><p></p><ul><li>min</li><li>hour</li><li>changed var (bool)</li></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="580" y="505" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-18" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="330" y="690" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-20" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="Dd7WwTdcWaoNbeUuBdqV-19" target="Dd7WwTdcWaoNbeUuBdqV-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-19" value="<h1 style="margin-top: 0px;"><font style="background-color: rgb(0, 255, 0);" color="#0000ff">temp class</font></h1><div><ul><li>offset</li><li>measured temp</li><li>humadity</li><li><span style="background-color: rgb(255, 255, 255);">heating ID</span></li><li><span style="background-color: rgb(255, 255, 255);">NickName</span></li><li><span style="background-color: rgb(255, 255, 255);">changed(bool)*2</span></li></ul></div><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="330" y="690" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="Dd7WwTdcWaoNbeUuBdqV-15" value="<h1 style="margin-top: 0px;"><font style="background-color: rgb(0, 255, 0);" color="#0000ff">Programs</font></h1><p></p><ul><li><span style="background-color: rgb(0, 255, 0);">Active program number</span></li><li>programs 5*24</li><li><span style="background-color: rgb(0, 255, 0);">activeprog changed</span></li><li>progs changed</li><li><span style="background-color: rgb(255, 255, 255);">wanted tmp, if set by user (stay usermode while !switch heat state )else( follow to program)</span></li><li><span style="background-color: rgb(255, 255, 255);">wtmp changed(bool)</span></li></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="330" y="505" width="220" height="175" as="geometry" />
</mxCell>
<mxCell id="EGFZ1ZhP13YRCxVc0ocT-1" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="530" y="20" width="280" height="160" as="geometry" />
</mxCell>
<mxCell id="EGFZ1ZhP13YRCxVc0ocT-2" value="<h1 style="margin-top: 0px;"><font style="background-color: rgb(0, 255, 0);">Client/</font><font style="background-color: rgb(255, 255, 255);" color="#0000ff">ServerWifi class</font></h1><p></p><ul><li>username</li><li>pw</li><li>host</li><li>IP (esptouch-&gt;espcarryable)</li><li>Clients</li><li>raw data</li><li>data</li></ul><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="530" y="20" width="270" height="160" as="geometry" />
</mxCell>
<mxCell id="ndiktqAGsSBiINuc-jtJ-1" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="510" y="700" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="ndiktqAGsSBiINuc-jtJ-2" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="740" y="520" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="ndiktqAGsSBiINuc-jtJ-3" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="240" y="700" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="ndiktqAGsSBiINuc-jtJ-4" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="250" y="520" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="DsSTtLDsLOM6_zCJLt70-1" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="510" y="520" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="pXutpHfCVqvMwrr6N7xr-1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=0.722;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="Dd7WwTdcWaoNbeUuBdqV-17" target="1WRcOF-GlIY8BhzdRWrr-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="pXutpHfCVqvMwrr6N7xr-2" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="600" y="248" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="pXutpHfCVqvMwrr6N7xr-3" value="<h1 style="margin-top: 0px;"><font style="background-color: rgb(255, 255, 255);" color="#0000ff">web server class</font></h1><div><ul><li><font color="#0000ff">Heating Circle</font>:</li><ul><li><span style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 255);">temp class data</span><br></li><li><font color="#0000ff"><span style="background-color: rgb(255, 255, 255);">espcarryable class datas</span></font></li></ul><li><font color="#0000ff"><span style="background-color: rgb(255, 255, 255);">wanted tmp</span></font></li><li><font color="#0000ff"><span style="background-color: rgb(255, 255, 255);">manualy swithc off the heating</span></font></li></ul></div><p></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="600" y="250" width="220" height="160" as="geometry" />
</mxCell>
<mxCell id="pXutpHfCVqvMwrr6N7xr-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.818;entryY=0.981;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="pXutpHfCVqvMwrr6N7xr-3" target="EGFZ1ZhP13YRCxVc0ocT-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ugzSy28iPEwM7h9Qi8Iy-1" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="250" y="900" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="ugzSy28iPEwM7h9Qi8Iy-3" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="370" y="10" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="eeXK1ExkLgjkNELtzcI6-3" target="eeXK1ExkLgjkNELtzcI6-12" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-3" value="Component" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="880" y="356" width="140" height="240" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-4" value="Name label" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-5" value="Mac label" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-6" value="temp label" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-7" value="panel" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="120" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-8" value="temp" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="150" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-9" value="ID" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="180" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-10" value="Client" style="text;strokeColor=#b85450;fillColor=#00FF00;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-3" vertex="1">
<mxGeometry y="210" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="eeXK1ExkLgjkNELtzcI6-12" target="eeXK1ExkLgjkNELtzcI6-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-12" value="Deviceshandler" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#00FF00;" parent="1" vertex="1">
<mxGeometry x="1210" y="386" width="140" height="120" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-13" value="Comp array" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-12" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-14" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">number_of_comps</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-12" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-15" value="changed" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-12" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-16" value="HeatingCircelHandler" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#00FF00;" parent="1" vertex="1">
<mxGeometry x="1420" y="386" width="140" height="150" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-17" value="Sensor" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-16" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-18" value="External device array" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-16" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-19" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">umber_of_devices</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-16" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-20" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">step</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-16" vertex="1">
<mxGeometry y="120" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-21" value="HeatHandler" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#00FF00;" parent="1" vertex="1">
<mxGeometry x="1620" y="386" width="140" height="150" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-22" value="HeatingCircle array" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-21" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-23" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">number_of_HeatingCircles</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-21" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-24" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">heatingMode</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-21" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-25" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div style="line-height: 19px;">Modbus slaveID</div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-21" vertex="1">
<mxGeometry y="120" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-26" value="DataHandler" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#00FF00;" parent="1" vertex="1">
<mxGeometry x="1860" y="356" width="140" height="180" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-27" value="Clock" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-26" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-28" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">HeatHandler</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-26" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-29" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><br></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-26" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-30" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div style="line-height: 19px;">prog</div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-26" vertex="1">
<mxGeometry y="120" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-31" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div style="line-height: 19px;"><div style="line-height: 19px;">ProgSave</div></div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-26" vertex="1">
<mxGeometry y="150" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-32" value="WifiHandler" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1860" y="40" width="240" height="300" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-33" value="SSID" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="30" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-34" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">PW</div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="60" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-35" value="<div style="font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><span style="background-color: rgb(0, 255, 0);">tmp client</span><span style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42);"><br></span></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="90" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-36" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div style="line-height: 19px;">number_of_client</div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="120" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-37" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">raw<br></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="150" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-38" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">data<br></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="180" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-39" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;">ID<br></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="210" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-40" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div style="line-height: 19px;">Switch(wifi enable/disable)</div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="240" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-41" value="<div style="color: rgb(218, 227, 227); background-color: rgb(31, 39, 42); font-family: Consolas, &quot;Courier New&quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div style="line-height: 19px;"><div style="line-height: 19px;">Client_MAC_ADDRESS</div></div></div>" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="eeXK1ExkLgjkNELtzcI6-32" vertex="1">
<mxGeometry y="270" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-42" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="eeXK1ExkLgjkNELtzcI6-17" target="eeXK1ExkLgjkNELtzcI6-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-43" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="eeXK1ExkLgjkNELtzcI6-22" target="eeXK1ExkLgjkNELtzcI6-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eeXK1ExkLgjkNELtzcI6-44" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;exitX=0.75;exitY=0;exitDx=0;exitDy=0;entryX=0.004;entryY=0.2;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="eeXK1ExkLgjkNELtzcI6-3" target="eeXK1ExkLgjkNELtzcI6-33" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1370" y="366" as="sourcePoint" />
<mxPoint x="1420" y="316" as="targetPoint" />
<Array as="points">
<mxPoint x="985" y="166" />
<mxPoint x="1830" y="166" />
<mxPoint x="1830" y="116" />
<mxPoint x="1830" y="76" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="mA7WLuH64W1LuY7A9a-7-1" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.tick;fillColor=#FF0000;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="780" y="290" width="30" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="vcpjxSTGsjfxv2p7aLN4" name="eeprom">
<mxGraphModel dx="1434" dy="836" grid="1" gridSize="10" guides="1" tooltips="1" connect="0" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="lREojvBChQipQjGddZCE-6" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="44" y="225" width="740" height="385" as="geometry" />
</mxCell>
<mxCell id="2HsIRPUNV4d2ECNY2tHg-8" value="cím intben:<div><span style="white-space: pre;"><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">961</span>-981</span></div><div><span style="white-space: pre;"><span style="white-space: pre;">	</span>9<span style="background-color: rgb(51, 255, 51);">82</span>-1002</span></div><div><span style="white-space: pre;"><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">1003</span>-1018</span></div><div><span style="white-space: pre;"><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">1019</span>-1022</span></div><div><span style="white-space: pre;"><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">1023</span><br></span></div><div><br></div><div><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">1024</span>-1027&nbsp;</div><div><span style="white-space: pre; background-color: rgb(255, 255, 255);">	</span><span style="background-color: rgb(51, 255, 51);">1028</span>-1031</div><div><br></div><div><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">1032</span>-1035</div><div><span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 51);">1036-</span>1043<br></div><div><br></div><div><div>1.<span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 255);">0</span> <span style="background-color: rgb(51, 255, 51);">8 16 24 32 40 48 56 64 72 80 88 96 104 112 120 128 136 144 152 160 168 176 184</span></div><div><span style="background-color: initial;"><br></span></div><div>2.<span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 255);">192</span><span style="background-color: rgb(255, 255, 255);"> </span><span style="background-color: rgb(51, 255, 51);">200 208 216 224 232 240 248 256 264 272 280 288 296 304 312 320 328 336 344 352 360 368 376</span></div><div><br></div><div>3.<span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 255);">384</span><span style="background-color: rgb(255, 255, 255);"> </span><span style="background-color: rgb(51, 255, 51);">392 400 408 416 424 432 440 448 456 464 472 480 488 496 504 512 520 528 536 544 552 560 568</span></div><div><br></div><div>4.<span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 255);">576</span><span style="background-color: rgb(255, 255, 255);"> </span><span style="background-color: rgb(51, 255, 51);">584 592 600 608 616 624 632 640 648 656 664 672 680 688 696 704 712 720 728 736 744 752 760</span></div><div><br></div><div>5.<span style="white-space: pre;">	</span><span style="background-color: rgb(51, 255, 255);">768</span><span style="background-color: rgb(255, 255, 255);"> </span><span style="background-color: rgb(51, 255, 51);">776 784 792 800 808 816 824 832 840 848 856 864 872 880 888 896 904 912 920 928 936 944 952</span></div></div>" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="180" y="304" width="590" height="282" as="geometry" />
</mxCell>
<mxCell id="2HsIRPUNV4d2ECNY2tHg-3" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="20" y="1030" width="360" height="375" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-2" value="<h1 style="margin-top: 0px;">Emulated EEPROM&nbsp;</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry width="310" height="40" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-8" value="<div><div>wifi:&nbsp;</div><div><span style="white-space: pre;">	</span>username: 21 char</div><div><span style="white-space: pre;">	</span>pw:<span style="white-space: pre;">	</span><span style="white-space: pre;">	</span>&nbsp; 21char</div><div><span style="white-space: pre;">	</span>ip:<span style="white-space: pre;">	</span><span style="white-space: pre;">	</span>&nbsp; 16 char&nbsp;<br><div><span style="white-space: pre;">	</span>host:<span style="white-space: pre;">	&nbsp;</span>&nbsp;1 uint<br></div></div><div><span style="white-space: pre;">	</span>enable/dis: 1 bool<br></div><div>Clock :<div><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 153, 51);">hour: 1 uint</span></div><div><span style="white-space: pre; background-color: rgb(255, 255, 255);">	</span><span style="background-color: rgb(255, 153, 51);">min: 1 uint</span></div><div><div>offsets:</div><div><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 153, 51);">active program 1 uint</span><br></div><div><span style="white-space: pre;">	</span>dht tmp offset<span style="white-space: pre;">	</span>&nbsp;1 double</div></div></div><div>prog:</div><div><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 153, 51);">5x24 double&nbsp;</span><br></div><div><br></div></div>" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="47" y="270" width="240" height="250" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-3" value="<b><font style="font-size: 14px;">Menu with params</font></b>" style="whiteSpace=wrap;html=1;aspect=fixed;" parent="1" vertex="1">
<mxGeometry x="80" y="60" width="120" height="120" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-4" value="" style="curved=1;endArrow=classic;html=1;rounded=0;entryX=0;entryY=0.143;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0;exitY=0.75;exitDx=0;exitDy=0;" parent="1" source="lREojvBChQipQjGddZCE-3" target="lREojvBChQipQjGddZCE-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="210" y="100" as="sourcePoint" />
<mxPoint x="420" y="70" as="targetPoint" />
<Array as="points">
<mxPoint x="70" y="180" />
<mxPoint x="50" y="210" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-7" value="<h1 style="margin-top: 0px;">params maxelem/param</h1><p><br></p>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="44" y="215" width="190" height="70" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-9" value="" style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=data:image/png,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;" parent="1" vertex="1">
<mxGeometry x="235" y="60" width="210" height="145" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-11" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="44" y="610" width="190" height="170" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-13" value="" style="curved=1;endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.75;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=0;entryDy=0;" parent="1" source="lREojvBChQipQjGddZCE-3" target="lREojvBChQipQjGddZCE-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="460" y="450" as="sourcePoint" />
<mxPoint x="510" y="400" as="targetPoint" />
<Array as="points">
<mxPoint x="20" y="180" />
<mxPoint x="10" y="390" />
<mxPoint x="10" y="510" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-14" value="<h1 style="margin-top: 0px;">Menu</h1>" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="44" y="610" width="110" height="40" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-15" value="<div style="text-align: left;"><span style="background-color: initial;">offset:</span><span style="background-color: initial; white-space: pre;">	</span><span style="background-color: initial; white-space: pre;">	</span><span style="background-color: rgb(255, 255, 0);">tmp</span><br></div><div style="text-align: left;">clock:&nbsp;<span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 255, 0);">hour</span></div><div style="text-align: left;"><span style="white-space: pre;"><span style="background-color: initial; white-space: pre;">	</span><span style="background-color: initial; white-space: pre;">	</span><span style="background-color: initial; white-space: pre;">	</span><span style="background-color: rgb(255, 255, 0);">min</span></span></div><div style="text-align: left;">wifi:<span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 255, 102);">username</span></div><div style="text-align: left;"><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 255, 0);">pw</span><br></div><div style="text-align: left;"><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 255, 51);">ip</span><br></div><div style="text-align: left;"><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="background-color: rgb(255, 255, 0);">host</span><br></div><div style="text-align: left;"><span style="background-color: rgb(255, 255, 255);"><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span><span style="white-space: pre;">	</span></span><span style="background-color: rgb(255, 255, 0);">Enable/Disable</span><br></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="54" y="650" width="170" height="120" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-17" value="" style="curved=1;endArrow=classic;html=1;rounded=0;strokeWidth=4;strokeColor=default;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="197" y="730" as="sourcePoint" />
<mxPoint x="330" y="670" as="targetPoint" />
<Array as="points">
<mxPoint x="247" y="730" />
<mxPoint x="197" y="680" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-16" value="" style="curved=1;endArrow=classic;html=1;rounded=0;strokeWidth=2;strokeColor=#FFFF33;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="197" y="730" as="sourcePoint" />
<mxPoint x="330" y="670" as="targetPoint" />
<Array as="points">
<mxPoint x="247" y="730" />
<mxPoint x="197" y="680" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-26" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;" parent="1" vertex="1">
<mxGeometry x="430" y="250" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-20" value="<font style="font-size: 14px;"><b>ESPTouch</b></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;perimeterSpacing=0;dashed=1;" parent="1" vertex="1">
<mxGeometry x="430" y="230" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-23" value="" style="curved=1;endArrow=classic;html=1;rounded=0;exitX=0;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=2;" parent="1" source="lREojvBChQipQjGddZCE-26" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="344" y="365" as="sourcePoint" />
<mxPoint x="274" y="385" as="targetPoint" />
<Array as="points">
<mxPoint x="354" y="375" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="lREojvBChQipQjGddZCE-25" value="" style="curved=1;endArrow=classic;html=1;rounded=0;exitX=0;exitY=1;exitDx=0;exitDy=0;strokeWidth=2;strokeColor=#FF9933;" parent="1" source="lREojvBChQipQjGddZCE-26" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="551" y="410" as="sourcePoint" />
<mxPoint x="331" y="455" as="targetPoint" />
<Array as="points">
<mxPoint x="424" y="395" />
<mxPoint x="374" y="425" />