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:
7:9e8bc82dd198
Parent:
6:477c2c8458e4

File content as of revision 7:9e8bc82dd198:

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