upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for TM1637 (7-segment display) More...
The TM1637 is a display controller for LED based 7-segment displays. It can be used to address and write data to multiple display digits. This driver is based on the Grove version of the TM1637 display which uses 4 digits thus making it ideal for clock displays, timers, counters or even score display in a two player arcade game.
Public Types | |
enum | M_FAST_GPIO { NO = 0, YES = 1 } |
Public Member Functions | |
TM1637 (int clk_pin, int dio_pin, int bright=3, M_FAST_GPIO mmio=YES) | |
~TM1637 () | |
mraa_result_t | write (uint8_t *digits) |
mraa_result_t | write (int d,...) |
mraa_result_t | writeAt (int index, char symbol) |
mraa_result_t | write (std::string digits) |
void | setColon (bool value) |
void | setBrightness (int value) |
TM1637 | ( | int | clk_pin, |
int | dio_pin, | ||
int | bright = 3 , |
||
M_FAST_GPIO | mmio = YES |
||
) |
TM1637 constructor
clk_pin | the clock pin the sensor is connected to |
dio_pin | the data pin the sensor is connected to |
bright | initial brightness from 0 to 7 dark to bright (default 3) |
mmio | fast memory mapped gpio writes, default is yes |
mraa_result_t write | ( | uint8_t * | digits | ) |
Write digits to the display in 7 segment encoding
digits | an array of digits to send to the display |
mraa_result_t write | ( | int | d, |
... | |||
) |
Write digits to the display in 7 segment encoding
d | list of multiple arguments to send to the display |
mraa_result_t writeAt | ( | int | index, |
char | symbol | ||
) |
Write a symbol (digit or letter) to the display at a specified index
index | 0-based index of the digit to change from the left |
symbol | the digit or letter to display |
mraa_result_t write | ( | std::string | digits | ) |
Write all the digits or letters to the display as a string
digits | a string of symbols to display |
void setColon | ( | bool | value | ) |
Toggles the colon between digits on the display
value | pass true to turn on the colon, false to turn it off |
void setBrightness | ( | int | value | ) |
Use to control the brightness of the display
value | between 0 and 7, darkest to brightest |