https://github.com/alexistm/asciidic
Arduino ASCII Dictionary for 3641 & 595 shift registers
https://github.com/alexistm/asciidic
Last synced: about 2 months ago
JSON representation
Arduino ASCII Dictionary for 3641 & 595 shift registers
- Host: GitHub
- URL: https://github.com/alexistm/asciidic
- Owner: AlexisTM
- License: apache-2.0
- Created: 2015-10-16T12:44:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-22T23:53:03.000Z (over 10 years ago)
- Last Synced: 2025-03-02T14:48:44.223Z (over 1 year ago)
- Language: C++
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
Arduino ASCII Dictionary for 3641 4x 7 segments
=======================================
This library is done to simplify the nx7seg library and make you able to do your own implementation or change the display of the nx7seg without modifying the nx7seg library.
This library gives you the binary values to light on 7 segments with the convention :
```
A = 00000001
B = 00000010
C = 00000100
D = 00001000
E = 00010000
F = 00100000
G = 01000000
DP = 10000000
```
Values are in global vars :
```c++
byte dic_numbers[10];
byte dic_letters[36];
byte dic_comma[1];
```
The `dic_letters[0]` is the byte to write the 'A' on a 7 segment display.
The actual library is for the 3641BS, so to light on the A, you have to write 11111110.
***TODO*** : Reverse mode in defines or in a second lib ?
Credits
-------
Alexis Paques (@AlexisTM)