Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
NexText.h
1 
17 #ifndef __NEXTEXT_H__
18 #define __NEXTEXT_H__
19 
20 #include "NexTouch.h"
21 #include "NexHardware.h"
30 class NexText: public NexTouch
31 {
32 public: /* methods */
36  NexText(uint8_t pid, uint8_t cid, const char *name);
37 
45  uint16_t getText(char *buffer, uint16_t len);
46 
53  bool setText(const char *buffer);
54 
61  uint32_t Get_background_color_bco(uint32_t *number);
62 
69  bool Set_background_color_bco(uint32_t number);
70 
77  uint32_t Get_font_color_pco(uint32_t *number);
78 
85  bool Set_font_color_pco(uint32_t number);
86 
93  uint32_t Get_place_xcen(uint32_t *number);
94 
101  bool Set_place_xcen(uint32_t number);
102 
109  uint32_t Get_place_ycen(uint32_t *number);
110 
117  bool Set_place_ycen(uint32_t number);
118 
125  uint32_t getFont(uint32_t *number);
126 
133  bool setFont(uint32_t number);
134 
141  uint32_t Get_background_crop_picc(uint32_t *number);
142 
149  bool Set_background_crop_picc(uint32_t number);
150 
157  uint32_t Get_background_image_pic(uint32_t *number);
158 
165  bool Set_background_image_pic(uint32_t number);
166 
167 };
168 
173 #endif /* #ifndef __NEXTEXT_H__ */
NexText(uint8_t pid, uint8_t cid, const char *name)
Definition: NexTouch.h:53
uint32_t Get_place_xcen(uint32_t *number)
bool Set_background_color_bco(uint32_t number)
Definition: NexText.h:30
uint32_t Get_place_ycen(uint32_t *number)
uint32_t Get_background_crop_picc(uint32_t *number)
uint32_t Get_background_image_pic(uint32_t *number)
bool Set_font_color_pco(uint32_t number)
bool setFont(uint32_t number)
bool setText(const char *buffer)
bool Set_place_xcen(uint32_t number)
uint32_t Get_background_color_bco(uint32_t *number)
bool Set_background_crop_picc(uint32_t number)
bool Set_place_ycen(uint32_t number)
uint32_t Get_font_color_pco(uint32_t *number)
uint32_t getFont(uint32_t *number)
bool Set_background_image_pic(uint32_t number)
uint16_t getText(char *buffer, uint16_t len)