Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
NexSlider.h
1 
17 #ifndef __NEXSLIDER_H__
18 #define __NEXSLIDER_H__
19 
20 #include "NexTouch.h"
21 #include "NexHardware.h"
30 class NexSlider: public NexTouch
31 {
32 public: /* methods */
36  NexSlider(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_cursor_height_hig(uint32_t *number);
113 
120  bool Set_cursor_height_hig(uint32_t number);
121 
128  uint32_t getMaxval(uint32_t *number);
129 
136  bool setMaxval(uint32_t number);
137 
144  uint32_t getMinval(uint32_t *number);
145 
152  bool setMinval(uint32_t number);
153 };
159 #endif /* #ifndef __NEXSLIDER_H__ */
Definition: NexTouch.h:53
bool Set_background_color_bco(uint32_t number)
bool getValue(uint32_t *number)
uint32_t Get_font_color_pco(uint32_t *number)
uint32_t getMinval(uint32_t *number)
bool setValue(uint32_t number)
uint32_t Get_background_color_bco(uint32_t *number)
uint32_t Get_pointer_thickness_wid(uint32_t *number)
bool Set_cursor_height_hig(uint32_t number)
bool setMinval(uint32_t number)
uint32_t Get_cursor_height_hig(uint32_t *number)
NexSlider(uint8_t pid, uint8_t cid, const char *name)
bool Set_font_color_pco(uint32_t number)
bool Set_pointer_thickness_wid(uint32_t number)
Definition: NexSlider.h:30
bool setMaxval(uint32_t number)
uint32_t getMaxval(uint32_t *number)