Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
NexPicture.h
1 
17 #ifndef __NEXPICTURE_H__
18 #define __NEXPICTURE_H__
19 
20 #include "NexTouch.h"
21 #include "NexHardware.h"
30 class NexPicture: public NexTouch
31 {
32 public: /* methods */
36  NexPicture(uint8_t pid, uint8_t cid, const char *name);
37 
46  bool Get_background_image_pic(uint32_t *number);
47 
56  bool Set_background_image_pic(uint32_t number);
57 
66  bool getPic(uint32_t *number);
67 
76  bool setPic(uint32_t number);
77 };
78 
83 #endif /* #ifndef __NEXPICTURE_H__ */
Definition: NexTouch.h:53
Definition: NexPicture.h:30
NexPicture(uint8_t pid, uint8_t cid, const char *name)
bool setPic(uint32_t number)
bool Get_background_image_pic(uint32_t *number)
bool getPic(uint32_t *number)
bool Set_background_image_pic(uint32_t number)