PIR sensor test for the CORE-1000

Dependencies:   mbed

main.cpp

Committer:
bcostm
Date:
2016-11-09
Revision:
5:0815efcb0008
Parent:
2:b60cb847489c
Child:
4:c0ba73408d9e

File content as of revision 5:0815efcb0008:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1; // LED is ON
        wait(0.2); // 200 ms
        myled = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}