Library for Nuelectronics Nokia 3310/5110 LCD Display and joystick.

Dependents:   LEDFun NetTester

Fork of N3310LCD by Andrew Lindsay

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers N3310LCDDefs.h Source File

N3310LCDDefs.h

00001 /**
00002  * @section DESCRIPTION
00003  * N3310LCD. A program to interface mbed with the nuelectronics
00004  * Nokia 3310 LCD shield from www.nuelectronics.com. Ported from
00005  * the nuelectronics Arduino code.
00006  *
00007  * @section LICENSE
00008  *
00009  * Copyright (C) <2009> Petras Saduikis <petras@petras.co.uk>
00010  *
00011  * Converted to a mbed library by Andrew D. Lindsay
00012  *
00013  * This file is part of N3310LCD.
00014  *
00015  * N3310LCD is free software: you can redistribute it and/or modify
00016  * it under the terms of the GNU General Public License as published by
00017  * the Free Software Foundation, either version 3 of the License, or
00018  * (at your option) any later version.
00019  *
00020  * N3310LCD is distributed in the hope that it will be useful,
00021  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00022  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00023  * GNU General Public License for more details.
00024  *
00025  * You should have received a copy of the GNU General Public License
00026  * along with N3310LCD.  If not, see <http://www.gnu.org/licenses/>.
00027  */
00028 
00029 #ifndef N3310LCDDEFS_H
00030 #define N3310LCDDEFS_H
00031 
00032 enum eDisplayMode {NORMAL, HIGHLIGHT};
00033 //enum eRequestType {CMD, DATA};
00034 enum eBacklight {OFF, ON};
00035 
00036 typedef unsigned char BYTE;
00037 
00038 #endif