A Particle library for the HT16K33 LED display driver.
Connect the HT16K33 to I2C, add the HT16K33 library to your project and follow this simple example:
#include "HT16K33-LED.h"
HT16K33 display;
void setup() {
display.begin();
}
void loop() {
uint8_t dots[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
// Set dots[0], dots[1], etc to other values
display.writeDisplay(dots, 0, sizeof(dots));
}
See the examples folder for more details.
TODO
Copyright 2017 Julien Vanier
Released under the MIT license