webappmanager
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LedControl.h
Go to the documentation of this file.
1 
13 #ifndef _LEDCONTROL_H_
14 #define _LEDCONTROL_H_
15 
16 typedef void (*LedControlCallback)(void* ctx);
17 
18 
20 {
21 public:
22 
23  virtual ~LedControl() {};
24 
25  virtual bool setBrightness(int keypadBrightness, int displayBrightness,
26  LedControlCallback callback, void* ctx) = 0;
27 
28 };
29 
30 #endif /* _LEDCONTROL_H_ */