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.
main.cpp
00001 #include "mbed.h" 00002 00003 DigitalOut led1(LED1); 00004 DigitalIn alarm(p29, PullUp); //internal pull up 00005 00006 int main() { 00007 wait(2); //Wait for sensor to take snap shot of still room 00008 00009 while(1) { 00010 if (!alarm){ 00011 led1=1; 00012 wait(2); 00013 } 00014 else 00015 led1=0; 00016 } 00017 }
Generated on Wed Jul 13 2022 08:25:10 by
1.7.2
PIR Motion Sensor (SEN-08630)