Skip to content

viti95/ht16k33

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino Holtek HT16K33 library

This library is used to allow an Arduino device talk to the Holtek HT16K33 chip to control a 7-segment based display. Uses the I2C port and the Wired library.

HT16K33 image

Device connection

  • Arduino 5v -> Backpack +5v / +
  • Arduino GND -> Backpack GND / -
  • Arduino SDA -> Backpack SDA / D
  • Arduino SCL -> Backpack SCL / C

Installation

Copy master folder onto your Arduino library

Usage

Simply import the file 'ht16k33.h' into your .ino

#include "ht16k33.h"

And then define the class, plus initilize it on the setup

HT16K33 HT;
void setup(){
  HT.begin(0x00); // I2C address
}

Examples

It's included one complete example that demostrates how to use the library. Tested and working on this devices:

  • Arduino Mega 2560
  • Arduino Due

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%