Dec | 7-Seg |
---|---|
0 | 126 |
1 | 48 |
2 | 109 |
3 | 121 |
4 | 51 |
5 | 91 |
6 | 95 |
7 | 112 |
8 | 127 |
9 | 123 |
Created
September 9, 2015 20:09
-
-
Save colinvh/f4b31161da070fbc41ec to your computer and use it in GitHub Desktop.
7-segment display tables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
seven = [126, 48, 109, 121, 51, 91, 95, 112, 127, 123]; | |
sevenLookup = {}; | |
for (var i = 0; i < 10; i++) sevenLookup[seven[i]] = i; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment