HT16K33-LED (community library)

Summary

Name Value
Name HT16K33-LED
Version 1.0.2
Installs 858
License MIT
Author Julien Vanier jvanier@gmail.com
Download .tar.gz

HT16K33 LED matrix driver

Example Build Testing

Device OS Version:

This table is generated from an automated build. Success only indicates that the code compiled successfully.

Library Read Me

This content is provided by the library maintainer and has not been validated or approved.

HT16K33-LED

A Particle library for the HT16K33 LED display driver.

Usage

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.

Documentation

HT16K33

TODO

References

License

Copyright 2017 Julien Vanier

Released under the MIT license

Browse Library Files