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
main.cpp
- Committer:
- mmarine3
- Date:
- 2020-04-21
- Revision:
- 2:1ec843c95914
- Child:
- 3:b5cdd40e99e9
File content as of revision 2:1ec843c95914:
#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); } }