can't push chnages :(

Fork of FBRDash by Michael Allan

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers bigchar.h Source File

bigchar.h

00001 #ifndef FBRDASH_BIGCHAR_H
00002 #define FBRDASH_BIGCHAR_H
00003 
00004 #include "TextLCD.h"
00005 
00006 #define TOP_LEFT 0
00007 #define TOP_RIGHT 1
00008 #define BOTTOM_RIGHT 2
00009 #define BOTTOM_LEFT 3
00010 #define TWO_LINES 4
00011 #define BOTTOM 5
00012 #define TOP 6
00013 #define TWO_LINES_5 7
00014 
00015 #define FULL 0xFF
00016 #define BLANK 0xFE
00017 
00018 void setup_bigchar(TextLCD* lcd);
00019 void write_bigchar(TextLCD* lcd, int position, int number);
00020 
00021 #endif