Numworks Epsilon  1.4.1
Graphing Calculator Operating System
backlight.h
Go to the documentation of this file.
1 #ifndef ION_DEVICE_BACKLIGHT_H
2 #define ION_DEVICE_BACKLIGHT_H
3 
4 #include <ion/backlight.h>
5 
6 namespace Ion {
7 namespace Backlight {
8 namespace Device {
9 
10 /* Pin | Role | Mode | Function
11  * -----+-------------------+-----------------------+----------
12  * PC6 | Backlight Enable | Output |
13  */
14 
15 void init();
16 void shutdown();
17 void suspend();
18 void resume();
19 void setLevel(uint8_t level);
20 uint8_t level();
21 
22 void sendPulses(int n);
23 
24 }
25 }
26 }
27 
28 #endif
void setLevel(uint8_t level)
Definition: backlight.cpp:59
void Backlight(const char *input)
Definition: backlight.cpp:10
unsigned char uint8_t
Definition: stdint.h:4
void sendPulses(int n)
Definition: backlight.cpp:74
Definition: backlight.h:6