Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
main.cpp
- Committer:
- chills
- Date:
- 2017-12-27
- Revision:
- 4:2759062f4264
- Parent:
- 3:6ee7c8ce0b7a
File content as of revision 4:2759062f4264:
#include "mbed.h" #include <string> #include "LCD.hpp" DigitalOut myled(LED1); /*DigitalOut RS(D9); DigitalOut RW(D4); DigitalOut E(D8); BusInOut DB(A0, A1, A2, A3, D7, D6, D3, D1); //LSB First*/ LCD lcd(D8,D9,D4,A0,A1,A2,A3,D7,D6,D3,D1); int main() { lcd.Initialise(); lcd.DDRAM_Address(0x00); lcd.Write_String("2017_12_27 18:22"); }