Initial commit
This commit is contained in:
parent
c73d714dae
commit
719e10974f
14
sevenseg_dec.c
Normal file
14
sevenseg_dec.c
Normal 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
14
sevenseg_dec_inv.c
Normal file
@ -0,0 +1,14 @@
|
||||
#include "mc8051fun.h"
|
||||
|
||||
uint8_t sevenseg_dec_inv[10] = {
|
||||
0b00000011,
|
||||
0b10011111,
|
||||
0b00100101,
|
||||
0b00001101,
|
||||
0b10011001,
|
||||
0b01001001,
|
||||
0b01000001,
|
||||
0b00011111,
|
||||
0b00000001,
|
||||
0b00001001
|
||||
};
|
Loading…
Reference in New Issue
Block a user