can't push chnages :(

Fork of FBRDash by Michael Allan

inc/bigchar.h

Committer:
tomontoast
Date:
2012-10-14
Revision:
5:177520d43c87
Parent:
1:b3907b8d9f65

File content as of revision 5:177520d43c87:

#ifndef FBRDASH_BIGCHAR_H
#define FBRDASH_BIGCHAR_H

#include "TextLCD.h"

#define TOP_LEFT 0
#define TOP_RIGHT 1
#define BOTTOM_RIGHT 2
#define BOTTOM_LEFT 3
#define TWO_LINES 4
#define BOTTOM 5
#define TOP 6
#define TWO_LINES_5 7

#define FULL 0xFF
#define BLANK 0xFE

void setup_bigchar(TextLCD* lcd);
void write_bigchar(TextLCD* lcd, int position, int number);

#endif