Base library for various projects.

Dependents:   LEDFun NetTester

Base library for various projects.

Committer:
Searle95
Date:
Thu Aug 01 12:14:19 2013 +0000
Revision:
2:a3deb705b78e
Parent:
0:a2d01ba1a81b
Added in a system restart at the end of cycle, version variable added for ease and minor timing changes. Version updated to 1.05.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Searle95 0:a2d01ba1a81b 1 #ifndef SCREENS_H
Searle95 0:a2d01ba1a81b 2 #define SCREENS_H
Searle95 0:a2d01ba1a81b 3
Searle95 0:a2d01ba1a81b 4 #include "N3310LCD.h"
Searle95 0:a2d01ba1a81b 5 #include "N3310SPIConfig.h"
Searle95 0:a2d01ba1a81b 6
Searle95 0:a2d01ba1a81b 7 static N3310LCD lcd(N3310SPIPort::MOSI, N3310SPIPort::MISO, N3310SPIPort::SCK, N3310SPIPort::CE, N3310SPIPort::DAT_CMD, N3310SPIPort::LCD_RST, N3310SPIPort::BL_ON);
Searle95 0:a2d01ba1a81b 8 static Serial pc(USBTX, USBRX);
Searle95 0:a2d01ba1a81b 9
Searle95 0:a2d01ba1a81b 10 #endif