A simple program built with mbed and a Nokia N3310LCD screen. Using the USB serial and any terminal application, you can change the brightness to 4 led's. Instructions are on the screen to start. Enjoy and have fun! All feedback is welcome. Please email: d.b.searle@reading.ac.uk

Dependencies:   N3310LCD mbed-rtos mbed Functions

Welcome

A simple program built with mbed and a Nokia N3310LCD screen. Using the USB serial and any terminal application, you can change the brightness to 4 led's. Instructions are on the screen to start. Enjoy and have fun! All feedback is welcome. Please email: d.b.searle@reading.ac.uk

Committer:
Searle95
Date:
Thu Aug 01 09:08:18 2013 +0000
Revision:
7:9e8bc82dd198
Parent:
6:477c2c8458e4
Library published.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Searle95 0:1a5ac0d2b2f6 1 #include "mbed.h"
Searle95 0:1a5ac0d2b2f6 2 #include "rtos.h"
Searle95 6:477c2c8458e4 3 #include "Functions.h"
Searle95 0:1a5ac0d2b2f6 4
Searle95 6:477c2c8458e4 5 Functions funct;
Searle95 0:1a5ac0d2b2f6 6
Searle95 0:1a5ac0d2b2f6 7 int main() {
Searle95 6:477c2c8458e4 8 funct.Intro();
Searle95 6:477c2c8458e4 9 funct.Commands();
Searle95 6:477c2c8458e4 10 funct.LEDAndRestart();
Searle95 0:1a5ac0d2b2f6 11 }