Initial commit

This commit is contained in:
2017-11-27 09:54:08 +00:00
commit e0aed95b7b
6 changed files with 164 additions and 0 deletions

83
numbers.h Normal file
View File

@@ -0,0 +1,83 @@
const char number[10][5][6] = \
{\
{ \
"#####", \
"# #", \
"# #", \
"# #", \
"#####", \
}, \
{ \
" #", \
" #", \
" #", \
" #", \
" #",
}, \
{ \
"#####",\
" #",\
"#####",\
"# ",\
"#####"\
}, \
{\
"#####",\
" #",\
" ####",\
" #",\
"#####"\
}, \
{\
"# #",\
"# #", \
"#####",\
" #",\
" #"\
},\
{\
"#####",\
"# ",\
"#####",\
" #",\
"#####"\
},\
{\
"#####",\
"# ",\
"#####",\
"# #",\
"#####"\
},\
{\
"#####",\
" #",\
" #",\
" #",\
" #"\
}, \
{\
"#####",\
"# #",\
"#####",\
"# #",\
"#####"\
},\
{\
"#####",\
"# #",\
"#####",\
" #",\
"#####"\
}\
};
const char *colon[5] = \
{\
" ",\
" # ",\
" ",\
" # ",\
" "\
};