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

main.cpp

Committer:
Searle95
Date:
2013-08-01
Revision:
6:477c2c8458e4
Parent:
1:69297d522e83

File content as of revision 6:477c2c8458e4:

#include "mbed.h"
#include "rtos.h"
#include "Functions.h"
 
Functions funct;
 
int main() {
    funct.Intro();
    funct.Commands();
    funct.LEDAndRestart();
}