forked from InnuendoPi/MQTTDevice4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNextionX2.h
1018 lines (929 loc) · 22.6 KB
/
NextionX2.h
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
#ifndef NEXTION_X2_H
#define NEXTION_X2_H
#include "Arduino.h"
#define MAX_BUFFER_LENGTH 14
#define MAX_LIST_LENGTH 24 // number of objects which can be handled
#define ATTRIBUTE_TEXT_LENGTH 90 // 50
#define ATTRIBUTE_TEXT_LENGTH_X 64
#define ATTRIBUTE_NUM_LENGTH 32
#define ATTRIBUTE_NUM_LENGTH_X 48
#define RECEIVE_STRING_LENGTH 32
#define TIMEOUT 100
// color definitions
#define BLACK 0x0000
#define BLUE 0x001F
#define RED 0xF800
#define GREEN 0x07E0
#define CYAN 0x07FF
#define MAGENTA 0xF81F
#define YELLOW 0xFFE0
#define LIGHT_GREY 0xBDF7
#define GREY 0x8430
#define DARK_GREY 0x4208
#define WHITE 0xFFFF
/**
* @brief converts rgb to 16bit color in 656 format
*
* @param red
* @param green
* @param blue
* @return uint16_t 16bit color
*/
uint16_t color565(uint8_t red, uint8_t green, uint8_t blue)
{
red >>= 3;
green >>= 2;
blue >>= 3;
return (red << 11) | (green << 5) | blue;
}
/**
* @brief converts an long integer number to an array
*
* @param number
* @return const char*
*/
const char *i32toa(int32_t number)
{
static char numstring[16];
sprintf(numstring, "%ld", number);
return numstring;
}
enum fill_t
{
CROP,
SOLID,
IMAGE,
NOFILL
};
enum alignhor_t
{
LEFT,
CENTER,
RIGHT
};
enum alignver_t
{
TOP,
MIDDLE,
BOTTOM
};
/**
* @brief Component Id declaration
*
*/
typedef union ComponentIdType
{
uint16_t guid;
struct
{
uint8_t page;
uint8_t object;
};
} componentId_t;
/**
* @brief Forward declaration (needed for the reference in NextionComponent)
*
*/
class NextionComPort;
/**
* @brief NextionComponent declaration
*
*/
class NextionComponent
{
public:
/**
* @brief Construct a new Nex Comp object
*
* @tparam NexComm_t
*/
template <class NexComm_t>
NextionComponent(NexComm_t &nexComm, uint8_t pageId, uint8_t objectId);
/**
* @brief Set the Attr object
*
* @param number
*/
void attribute(const char *attr, int32_t number);
/**
* @brief Set the Attr object
*
* @param text
*/
void attribute(const char *attr, const char *text);
/**
* @brief returns the guid
*
* @return uint16_t
*/
uint16_t guid();
/**
* @brief add a touch callback
*
* @param callback function
*/
void touch(void (*onTouch)());
/**
* @brief add a release callback
*
* @param callback function
*/
void release(void (*onRelease)());
/**
* @brief get the value of an object attribute
*
* @param attribute
* @return int32_t object atrribute value
*/
int32_t attributeValue(const char *attr);
/**
* @brief get the text string of an object attribute
*
* @param attribute
* @return const char* object attribute text
*/
const char *attributeText(const char *attr);
/**
* @brief get the value of the object
*
* @return int32_t value
*/
int32_t value();
/**
* @brief set the value of the object
*
* @param number object value, 0xFFFFFFFF if not defined
*/
void value(int32_t number);
/**
* @brief get the text of the object
*
* @return const char* text
*/
const char *text();
/**
* @brief set the text of the object
*
* @param txt object text
*/
void text(const char *txt);
/**
* @brief event callback
*
* @param event
*/
void callback(uint8_t event);
private:
NextionComPort *nexComm;
componentId_t myId;
void (*onTouch)() = nullptr;
void (*onRelease)() = nullptr;
};
/**
* @brief List Elements declaration
*
*/
typedef struct ListElement
{
uint16_t guid;
NextionComponent *component;
} listElement_t;
/**
* @brief NextionComPort declaration
*
*/
class NextionComPort
{
public:
/**
* @brief Construct a new Nex Comm object
*
*/
NextionComPort();
/**
* @brief start a serial com port
*
* @tparam nextionSeriaType
* @param baud serial baudrate, default 9600
*/
template <class nextionSeriaType>
void begin(nextionSeriaType &nextionSerial, uint16_t baud = 9600);
/**
* @brief start a debug serial com port
*
* @tparam debugSerialType
* @param baud serial baudrate, default 9600
*/
template <class debugSerialType>
void debug(debugSerialType &debugSerial, uint16_t baud = 9600);
/**
* @brief send a command string
*
* @param cmd command string
*/
void command(const char *cmd);
/**
* @brief update the event loop
*
*/
void update();
/**
* @brief clear screen with a given color
*
* @param color
*/
void cls(uint16_t color);
/**
* @brief return currentPage
*
*/
uint8_t getCurrentPageID();
/**
* @brief return lastPage
*
*/
uint8_t getLastPageID();
/**
* @brief draw a line
*
* @param x1
* @param y1
* @param x2
* @param y2
* @param color
*/
void line(uint16_t x1, uint16_t y1, int16_t x2, uint16_t y2, uint16_t color);
/**
* @brief draw a circle
*
* @param x
* @param y
* @param diameter
* @param color
*/
void circle(uint16_t x, uint16_t y, uint16_t radius, uint16_t color);
/**
* @brief draw a filled circle
*
* @param x
* @param y
* @param diameter
* @param color
*/
void circleFilled(uint16_t x, uint16_t y, uint16_t radius, uint16_t color);
/**
* @brief draw a rectangle
*
* @param x
* @param y
* @param width
* @param height
* @param color
*/
void rectangle(uint16_t x, uint16_t y, int16_t width, uint16_t height, uint16_t color);
/**
* @brief draw a filled rectangle
*
* @param x
* @param y
* @param width
* @param height
* @param color
*/
void rectangleFilled(uint16_t x, uint16_t y, int16_t width, uint16_t height, uint16_t color);
/**
* @brief draw a text
*
* @param x upper left x coordinate
* @param y upper left y coordinate
* @param width of text area
* @param height height of text area
* @param font resource font number
* @param colorfg foreground color
* @param colorbg background color
* @param alignx horizontal alignment LEFT, CENTER, RIGHT
* @param aligny vertical alignment TOP, CENTER, BOTTOM
* @param fillbg background fill mode CROP, SOLID, IMAGE, NOFILL
* @param text string content
*/
void text(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t font, uint16_t colorfg, uint16_t colorbg, alignhor_t alignx, alignver_t aligny, fill_t fillbg, const char *text);
/**
* @brief draw a picture
*
* @param x upper left x coordinate
* @param y upper left y coordinate
* @param id resource picture id
*/
void picture(uint16_t x, uint16_t y, uint8_t id);
/**
* @brief draw a croped picture
*
* @param x upper left x coordinate
* @param y upper left y coordinate
* @param width new width of the picture
* @param height new height of the picture
* @param id resource picture id
*/
void pictureCrop(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t id);
/**
* @brief draw a advanced croped picture
*
* @param destx upper left x coordinate of desination
* @param desty upper left y coordinate of desination
* @param width new width of the picture
* @param height new height of the picture
* @param srcx upper left x coordinate of source
* @param srcy upper left y coordinate of source
* @param id resource picture id
*/
void pictureCropX(uint16_t destx, uint16_t desty, uint16_t width, uint16_t height, uint16_t srcx, uint16_t srcy, uint8_t id);
protected:
void addComponentList(NextionComponent *);
uint8_t inputString[MAX_BUFFER_LENGTH] = {0};
uint8_t length = 0;
Stream *nextionSerial = nullptr;
Stream *debugSerial = nullptr;
private:
void dbgLoop();
uint8_t readNextionReturn();
int32_t nextionValue();
const char *nextionText();
uint8_t indexByGuid(uint16_t guid);
uint8_t inputPointer = 0;
uint8_t counterFF = 0;
uint8_t lastPointer = 0;
listElement_t lastList[MAX_LIST_LENGTH];
uint8_t currentPageID = 0;
uint8_t lastPageID = 0;
friend NextionComponent;
};
template <class NexComm_t>
NextionComponent::NextionComponent(NexComm_t &nexComm, uint8_t pageId, uint8_t objectId) : nexComm(&nexComm)
{
myId.page = pageId;
myId.object = objectId;
}
void NextionComponent::attribute(const char *attr, int32_t number)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "p[");
strcat(commandString, i32toa(myId.page));
strcat(commandString, "].b[");
strcat(commandString, i32toa(myId.object));
strcat(commandString, "].");
strcat(commandString, attr);
strcat(commandString, "=");
strcat(commandString, i32toa(number));
nexComm->command(commandString);
}
void NextionComponent::attribute(const char *attr, const char *text)
{
char commandString[ATTRIBUTE_TEXT_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "p[");
strcat(commandString, i32toa(myId.page));
strcat(commandString, "].b[");
strcat(commandString, i32toa(myId.object));
strcat(commandString, "].");
strcat(commandString, attr);
strcat(commandString, "=\"");
strcat(commandString, text);
strcat(commandString, "\"");
nexComm->command(commandString);
}
uint16_t NextionComponent::guid()
{
return myId.guid;
}
void NextionComponent::touch(void (*onTouch)() = nullptr)
{
this->onTouch = onTouch;
nexComm->addComponentList(this);
}
void NextionComponent::release(void (*onRelease)() = nullptr)
{
this->onRelease = onRelease;
nexComm->addComponentList(this);
}
int32_t NextionComponent::attributeValue(const char *attr)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "get p[");
strcat(commandString, i32toa(myId.page));
strcat(commandString, "].b[");
strcat(commandString, i32toa(myId.object));
strcat(commandString, "].");
strcat(commandString, attr);
nexComm->command(commandString);
return nexComm->nextionValue();
}
const char *NextionComponent::attributeText(const char *attr)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "get p[");
strcat(commandString, i32toa(myId.page));
strcat(commandString, "].b[");
strcat(commandString, i32toa(myId.object));
strcat(commandString, "].");
strcat(commandString, attr);
nexComm->command(commandString);
return nexComm->nextionText();
}
int32_t NextionComponent::value()
{
return attributeValue("val");
}
void NextionComponent::value(int32_t number)
{
attribute("val", number);
}
const char *NextionComponent::text()
{
return attributeText("txt");
}
void NextionComponent::text(const char *txt)
{
attribute("txt", txt);
}
void NextionComponent::callback(uint8_t event)
{
// Serial.printf("NEX callback event %d\n", event);
switch (event)
{
case 0:
if (onRelease != nullptr)
{
onRelease();
// Serial.println("Release event");
}
break;
case 1:
if (onTouch != nullptr)
{
onTouch();
// Serial.println("Touch event");
}
break;
}
}
NextionComPort::NextionComPort() {}
template <class nextionSeriaType>
void NextionComPort::begin(nextionSeriaType &nextionSerial, uint16_t baud)
{
nextionSerial.begin(baud);
delay(100);
this->nextionSerial = &nextionSerial;
command("");
command("bkcmd=0");
}
template <class debugSerialType>
void NextionComPort::debug(debugSerialType &debugSerial, uint16_t baud)
{
debugSerial.begin(baud);
delay(100);
this->debugSerial = &debugSerial;
command("bkcmd=3");
}
void NextionComPort::command(const char *cmd)
{
update();
nextionSerial->print(cmd);
nextionSerial->print("\xFF\xFF\xFF");
// auskommentiert weil zu viele Ausgaben
// if ((debugSerial != nullptr) && (strlen(cmd) > 0)) {
// debugSerial->write("Command ");
// debugSerial->println(cmd);
// debugSerial->println();
// }
}
// https://wiki.iteadstudio.com/Nextion_Instruction_Set#Format_of_Device_Return_Data
// sendme -> sendet event 0x66
// printh 23 00 ff ff ff
// printh 66 00 ff ff ff
void NextionComPort::update()
{
componentId_t component;
length = readNextionReturn();
if ((length > 0) && (debugSerial != nullptr))
dbgLoop();
if ((length == 4) && (inputString[0] == 0x65))
{
component.page = inputString[1];
component.object = inputString[2];
uint8_t listpos = indexByGuid(component.guid);
if (listpos < MAX_LIST_LENGTH)
lastList[listpos].component->callback(inputString[3]);
}
// else if ( (length == 2) && ((inputString[0] == 0x23) || (inputString[0] == 0x24)) ) // printh 0x24 pageID FF FF FF
else if ( (length == 2) && (inputString[0] == 0x66) ) // printh 0x66 pageID FF FF FF
{
lastPageID = currentPageID;
currentPageID = inputString[1];
// Serial.printf("NEX input0 %x currentPageID %x lastPageID %d len %d\n", inputString[0], inputString[1], lastPageID, length );
}
}
uint8_t NextionComPort::getCurrentPageID()
{
return currentPageID;
}
uint8_t NextionComPort::getLastPageID()
{
return lastPageID;
}
void NextionComPort::addComponentList(NextionComponent *component)
{
listElement_t myComponent;
myComponent.component = component;
myComponent.guid = component->guid();
if (indexByGuid(myComponent.guid) == 0xFF)
{
lastList[lastPointer++] = myComponent;
if (lastPointer >= MAX_LIST_LENGTH)
lastPointer = 0;
}
}
void NextionComPort::dbgLoop()
{
if ((length == 1) && ((inputString[0] < 0x25) || (inputString[0] > 0x85)))
{
if (inputString[0] == 1)
{
// debugSerial->write("Success\n");
}
else if (inputString[0] < 0x25)
{
debugSerial->write("Error ");
debugSerial->println(inputString[0], HEX);
debugSerial->println();
}
else if (inputString[0] > 0x85)
{
debugSerial->write("Status ");
debugSerial->println(inputString[0], HEX);
debugSerial->println();
}
}
else if ((length == 4) && (inputString[0] == 0x65)) // 0x65 touch event
{
if (inputString[3] == 1)
debugSerial->write("Touch");
else
debugSerial->write("Release");
debugSerial->write(" page ");
debugSerial->print(inputString[1], DEC);
debugSerial->write(" object ");
debugSerial->println(inputString[2], DEC);
debugSerial->println();
}
else if ((length == 2) && (inputString[0] == 0x66)) // 0x66 preinit page event
{
debugSerial->write("CurrentPageID ");
debugSerial->println(inputString[1], DEC);
}
}
uint8_t NextionComPort::readNextionReturn()
{
uint8_t messageLength = 0;
while (nextionSerial->available() && counterFF < 3)
{
uint8_t inputByte = nextionSerial->read();
inputString[inputPointer] = inputByte;
inputPointer++;
if (inputByte == 255)
counterFF++;
else
{
counterFF = 0;
if (inputPointer > (MAX_BUFFER_LENGTH - 3))
inputPointer = MAX_BUFFER_LENGTH - 3;
}
}
if (counterFF == 3)
{
messageLength = inputPointer - 3;
counterFF = 0;
inputPointer = 0;
}
return messageLength;
}
int32_t NextionComPort::nextionValue()
{
bool endOfCommandFound;
bool error = false;
uint8_t tempChar = 0;
uint8_t buffer[4];
memset(buffer, 0, sizeof(buffer));
int32_t value = 0;
uint8_t inputByte = 0;
uint32_t timer = millis();
while (nextionSerial->available() < 8)
{
if ((millis() - timer) > TIMEOUT)
{
error = true;
break;
}
}
if (nextionSerial->available() > 7)
{
inputByte = nextionSerial->read();
timer = millis();
while (inputByte != 0x71)
{
if (nextionSerial->available())
inputByte = nextionSerial->read();
if ((millis() - timer) > TIMEOUT)
{
error = true;
break;
}
}
if (inputByte == 0x71)
{
for (int i = 0; i < 4; i++)
buffer[i] = nextionSerial->read();
int endBytes = 0;
timer = millis();
while (endOfCommandFound == false)
{
tempChar = nextionSerial->read();
if (tempChar == 0xFF)
{
endBytes++;
if (endBytes == 3)
endOfCommandFound = true;
}
else
{
error = true;
break;
}
if ((millis() - timer) > TIMEOUT)
{
error = true;
break;
}
}
}
}
if (endOfCommandFound == true)
{
value = buffer[3];
value <<= 8;
value |= buffer[2];
value <<= 8;
value |= buffer[1];
value <<= 8;
value |= buffer[0];
}
else
error = true;
if (error)
value = 0xFFFFFFFF;
return value;
}
const char *NextionComPort::nextionText()
{
bool endOfCommandFound = false;
bool error = false;
uint8_t tempChar = 0;
static char buffer[RECEIVE_STRING_LENGTH];
memset(buffer, 0, sizeof(buffer));
uint8_t inputByte;
uint32_t timer = millis();
while (nextionSerial->available() < 4)
{
if ((millis() - timer) > TIMEOUT)
{
error = true;
break;
}
}
if (nextionSerial->available() > 3)
{
inputByte = nextionSerial->read();
timer = millis();
while (inputByte != 0x70)
{
if (nextionSerial->available())
inputByte = nextionSerial->read();
if ((millis() - timer) > TIMEOUT)
{
error = true;
break;
}
}
if (inputByte == 0x70)
{
int endBytes = 0;
timer = millis();
while (endOfCommandFound == false)
{
if (nextionSerial->available())
{
tempChar = nextionSerial->read();
if (tempChar == 0xFF)
{
endBytes++;
if (endBytes == 3)
endOfCommandFound = true;
}
else
{
char tempString[2];
tempString[0] = tempChar;
tempString[1] = 0;
strcat(buffer, tempString);
}
}
if ((millis() - timer) > TIMEOUT)
{
error = true;
break;
}
}
}
}
if (error)
strcpy(buffer, "Error");
return buffer;
}
uint8_t NextionComPort::indexByGuid(uint16_t guid)
{
uint8_t returnValue = 0xFF;
for (uint8_t i = 0; i < MAX_LIST_LENGTH; i++)
{
if (lastList[i].guid == guid)
{
returnValue = i;
break;
}
}
return returnValue;
}
void NextionComPort::cls(uint16_t color)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "cls ");
strcat(commandString, i32toa(color));
command(commandString);
}
void NextionComPort::line(uint16_t x1, uint16_t y1, int16_t x2, uint16_t y2, uint16_t color)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "line ");
strcat(commandString, i32toa(x1));
strcat(commandString, ",");
strcat(commandString, i32toa(y1));
strcat(commandString, ",");
strcat(commandString, i32toa(x2));
strcat(commandString, ",");
strcat(commandString, i32toa(y2));
strcat(commandString, ",");
strcat(commandString, i32toa(color));
command(commandString);
}
void NextionComPort::rectangle(uint16_t x, uint16_t y, int16_t width, uint16_t height, uint16_t color)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "draw ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(x + width));
strcat(commandString, ",");
strcat(commandString, i32toa(y + height));
strcat(commandString, ",");
strcat(commandString, i32toa(color));
command(commandString);
}
void NextionComPort::rectangleFilled(uint16_t x, uint16_t y, int16_t width, uint16_t height, uint16_t color)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "fill ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(width));
strcat(commandString, ",");
strcat(commandString, i32toa(height));
strcat(commandString, ",");
strcat(commandString, i32toa(color));
command(commandString);
}
void NextionComPort::circle(uint16_t x, uint16_t y, uint16_t radius, uint16_t color)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "cir ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(radius));
strcat(commandString, ",");
strcat(commandString, i32toa(color));
command(commandString);
}
void NextionComPort::circleFilled(uint16_t x, uint16_t y, uint16_t radius, uint16_t color)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "cirs ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(radius));
strcat(commandString, ",");
strcat(commandString, i32toa(color));
command(commandString);
}
void NextionComPort::text(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t font, uint16_t colorfg, uint16_t colorbg, alignhor_t alignx, alignver_t aligny, fill_t fillbg, const char *text)
{
char commandString[ATTRIBUTE_TEXT_LENGTH_X];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "xstr ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(width));
strcat(commandString, ",");
strcat(commandString, i32toa(height));
strcat(commandString, ",");
strcat(commandString, i32toa(font));
strcat(commandString, ",");
strcat(commandString, i32toa(colorfg));
strcat(commandString, ",");
strcat(commandString, i32toa(colorbg));
strcat(commandString, ",");
strcat(commandString, i32toa(alignx));
strcat(commandString, ",");
strcat(commandString, i32toa(aligny));
strcat(commandString, ",");
strcat(commandString, i32toa(fillbg));
strcat(commandString, ",");
strcat(commandString, "\"");
strcat(commandString, text);
strcat(commandString, "\"");
command(commandString);
}
void NextionComPort::picture(uint16_t x, uint16_t y, uint8_t id)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "pic ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(id));
command(commandString);
}
void NextionComPort::pictureCrop(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t id)
{
char commandString[ATTRIBUTE_NUM_LENGTH];
memset(commandString, 0, sizeof(commandString));
strcat(commandString, "picq ");
strcat(commandString, i32toa(x));
strcat(commandString, ",");
strcat(commandString, i32toa(y));
strcat(commandString, ",");
strcat(commandString, i32toa(width));
strcat(commandString, ",");
strcat(commandString, i32toa(height));
strcat(commandString, ",");
strcat(commandString, i32toa(id));
command(commandString);
}
void NextionComPort::pictureCropX(uint16_t destx, uint16_t desty, uint16_t width, uint16_t height, uint16_t srcx, uint16_t srcy, uint8_t id)
{
char commandString[ATTRIBUTE_NUM_LENGTH_X];
memset(commandString, 0, sizeof(commandString));