27 #ifndef _EASYUINO_SEVEN_SEGMENTS_h 28 #define _EASYUINO_SEVEN_SEGMENTS_h 31 #include "Utilities.h" 63 bool begin(IN uint8_t brightness);
77 void print(IN uint8_t digit, IN uint8_t position);
83 void print(IN
unsigned int number);
89 void print(IN
int number);
95 void print(IN
const char*
string);
101 void sendByte(IN uint8_t byte);
void print(IN uint8_t digit, IN uint8_t position)
Print the digit (0-9) to the seven segment display of the position given.
bool begin()
Used to put the device ready to receive requests.
~SevenSegments()
Destructor.
void setBrightness(IN uint8_t brightness)
sets the brightness of the display
SevenSegments(IN uint8_t clkPin, IN uint8_t dataPin)
Constructor.
void end()
Used to stop the device API.
General class that provides the common API behaviour for all the devices/sensors. ...
Definition: Device.h:42
SevenSegments API is used to interact with seven segments displays.
Definition: SevenSegments.h:40