Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
NexGauge.h
1 
17 #ifndef __NEXGAUGE_H__
18 #define __NEXGAUGE_H__
19 
20 #include "NexTouch.h"
21 #include "NexHardware.h"
30 class NexGauge: public NexObject
31 {
32 public: /* methods */
36  NexGauge(uint8_t pid, uint8_t cid, const char *name);
37 
46  bool getValue(uint32_t *number);
47 
56  bool setValue(uint32_t number);
57 
64  uint32_t Get_background_color_bco(uint32_t *number);
65 
72  bool Set_background_color_bco(uint32_t number);
73 
80  uint32_t Get_font_color_pco(uint32_t *number);
81 
88  bool Set_font_color_pco(uint32_t number);
89 
96  uint32_t Get_pointer_thickness_wid(uint32_t *number);
97 
104  bool Set_pointer_thickness_wid(uint32_t number);
105 
112  uint32_t Get_background_cropi_picc(uint32_t *number);
113 
120  bool Set_background_crop_picc(uint32_t number);
121 };
122 
127 #endif /* #ifndef __NEXGAUGE_H__ */
uint32_t Get_pointer_thickness_wid(uint32_t *number)
bool Set_pointer_thickness_wid(uint32_t number)
uint32_t Get_font_color_pco(uint32_t *number)
uint32_t Get_background_color_bco(uint32_t *number)
bool getValue(uint32_t *number)
uint32_t Get_background_cropi_picc(uint32_t *number)
Definition: NexObject.h:32
bool Set_background_color_bco(uint32_t number)
bool Set_background_crop_picc(uint32_t number)
bool setValue(uint32_t number)
Definition: NexGauge.h:30
bool Set_font_color_pco(uint32_t number)
NexGauge(uint8_t pid, uint8_t cid, const char *name)