Skip to content

HT16K33 LED matrix driver for Particle Photon / Electron

License

Notifications You must be signed in to change notification settings

monkbroc/particle-ht16k33

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

HT16K33 LED matrix driver for Particle Photon / Electron

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages