Initial commit

This commit is contained in:
7u83 2024-05-19 00:56:59 +02:00
parent c73d714dae
commit 719e10974f
2 changed files with 28 additions and 0 deletions

14
sevenseg_dec.c Normal file
View File

@ -0,0 +1,14 @@
#include "mc8051fun.h"
uint8_t sevenseg_dec[10] = {
0b11111100,
0b01100000,
0b11011010,
0b11110010,
0b01100110,
0b10110110,
0b10111110,
0b11100000,
0b11111110,
0b11110110
};

14
sevenseg_dec_inv.c Normal file
View File

@ -0,0 +1,14 @@
#include "mc8051fun.h"
uint8_t sevenseg_dec_inv[10] = {
0b00000011,
0b10011111,
0b00100101,
0b00001101,
0b10011001,
0b01001001,
0b01000001,
0b00011111,
0b00000001,
0b00001001
};