Blinker

Dependencies:   TextLCD mbed MMA8451Q

Blinker.cpp

Committer:
Daniel90
Date:
2014-06-19
Revision:
3:05c8449bc489
Parent:
2:b5d4d7c6200b
Child:
4:a0a518132c23

File content as of revision 3:05c8449bc489:

//Multifunktionsblinker
//Hardware: Freescale FRDM KL25Z & SaintSmart LCD Keypad Shield
//Copyright: Andre Ehwein, Marcel Berrang, Daniel Knopp

#include "mbed.h"                                                        //common library für mbed
#include "TextLCD.h"                                                     //library für den LCD Shield

TextLCD lcd(PTA13, PTD5, PTA4, PTA5, PTC8, PTC9, TextLCD::LCD16x2);      //Config. für das LCD Shield

int main()
{
lcd.cls();    
}

//Ende