up to date
Diff: main.cpp
- Revision:
- 0:c8b31227d874
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Feb 26 18:40:51 2019 +0000
@@ -0,0 +1,21 @@
+#include "mbed.h"
+Serial pc(USBTX, USBRX); // tx, rx
+DigitalOut led(LED1);
+DigitalIn pir(D2); //Connect it to
+Timer timer;
+
+int main()
+{
+ while(1) {
+ if(!pir){
+ led = 0;
+ pc.printf("Nothing Detected\r\n");
+ wait(1);
+ }
+ else {
+ led=1;
+ pc.printf("Motion Detected\r\n");
+ wait(1);
+ }
+ }
+}
\ No newline at end of file