People Counter / Mbed 2 deprecated person_counter

Dependencies:   mbed mbed-rtos 4DGL-uLCD-SE HC_SR04_Ultrasonic_Library

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