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:
- rmalik8
- Date:
- 2020-04-22
- Revision:
- 3:b5cdd40e99e9
- Parent:
- 2:1ec843c95914
- Child:
- 4:7d02b3f3bee6
File content as of revision 3:b5cdd40e99e9:
#include "mbed.h" #include "SDFileSystem.h" #include "uLCD_4DGL.h" #include "XNucleo53L0A1.h" //#include <stdio.h> #include <string> uLCD_4DGL uLCD(p13, p14, p12); // serial tx, serial rx, reset pin; DigitalOut shdn(p26); DigitalOut MyLED(LED1); int main() { MyLED = 0; while(1){ MyLED = !MyLED; wait(.1); } }