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 mbed-rtos 4DGL-uLCD-SE HC_SR04_Ultrasonic_Library
Diff: main.cpp
- Revision:
- 2:1ec843c95914
- Child:
- 3:b5cdd40e99e9
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue Apr 21 18:52:03 2020 +0000 @@ -0,0 +1,17 @@ +#include "mbed.h" +#include "SDFileSystem.h" +#include "uLCD_4DGL.h" +#include <string> + +DigitalOut MyLED(LED1); + + + +int main() +{ + MyLED = 0; + while(1){ + MyLED = !MyLED; + wait(.1); + } +} \ No newline at end of file