Arduino library for SC1628D LED Driver IC
An Arduino library for 5-digit 7-segments display modules, based on the SC1628D chip. The SC1628D chip also has keyboard input capability also implemented in this library. This library supports screen orientation, custom fonts
The display modules has three signal connection (and two power connections) which are STB, CLK and DIO. These pins can be connected to any digital pins on the Arduino. When an object is created, the pins should be configured. There is no limitation on the number of instances used concurrently (as long as each instance has a pin pair of its own)
The library is installed as any Arduino library, by copying the files into a directory on the library search path of the Arduino IDE
The library provides a single class named SC1628D. An instance of this class provides the following functions:
clear
- Clear screendisplayDigit
- Set a digitdisplayDigits
- Display a one to four numbers plus lightsdisplaySegment
- Set a digit's segments using a maskdisplaySegments
- Display a one to five digit's segmentssetBrightness
- Sets the brightness of the displaysetFont
- Use your custom fontsetFilter
- Give a custom function to communicatre with another display
The information given above is only a summary. Please refer to SC1628D.h for more information. An example is included, demonstrating the operation of most of the functions.