Nextion User Manual
For Arduino developers
NexCrop.cpp
Go to the documentation of this file.
1 
16 #include "NexCrop.h"
17 
18 NexCrop::NexCrop(uint8_t pid, uint8_t cid, const char *name)
19  :NexTouch(pid, cid, name)
20 {
21 }
22 
23 bool NexCrop::getPic(uint32_t *number)
24 {
25  String cmd = String("get ");
26  cmd += getObjName();
27  cmd += ".picc";
28  sendCommand(cmd.c_str());
29  return recvRetNumber(number);
30 }
31 
32 bool NexCrop::setPic(uint32_t number)
33 {
34  char buf[10] = {0};
35  String cmd;
36 
37  utoa(number, buf, 10);
38  cmd += getObjName();
39  cmd += ".picc=";
40  cmd += buf;
41 
42  sendCommand(cmd.c_str());
43  return recvRetCommandFinished();
44 }
45 
bool getPic(uint32_t *number)
Get the number of picture.
Definition: NexCrop.cpp:23
NexCrop(uint8_t pid, uint8_t cid, const char *name)
Constructor.
Definition: NexCrop.cpp:18
The definition of class NexCrop.
bool setPic(uint32_t number)
Set the number of picture.
Definition: NexCrop.cpp:32
Father class of the components with touch events.
Definition: NexTouch.h:53