Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed TextLCD PinDetect
inc/bigchar.h
- Committer:
- intrinseca
- Date:
- 2012-06-25
- Revision:
- 1:b3907b8d9f65
File content as of revision 1:b3907b8d9f65:
#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