can't push chnages :(

Dependencies:   PinDetect TextLCD mbed

Fork of FBRDash by Michael Allan

inc/bigchar.h

Committer:
tomontoast
Date:
2012-06-25
Revision:
3:cb334e1d31c6
Parent:
1:b3907b8d9f65

File content as of revision 3:cb334e1d31c6:

#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