People Counter / Mbed 2 deprecated person_counter

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);
    }
}