After fixing my five digit tiny7, which broke during my Berlin trip, I started to improve the Arduino Library. I found out that using the print class would be very handy. Many people are familiar with this because it is also used for the Serial communication. till now not all function and only a reduced set of ASCII characters are supported but code like this works already:
#include <tiny7.h>
tiny7 myTiny7;
void setup() {
myTiny7.begin(5); //5 segments
myTiny7.print("Hello");
}
void loop() {;}
The result is this:Next I will expand my character set to full ASCII and I will also add support for dots.
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.