Home automation using Xbee radios

Dependencies:   EthernetNetIf HTTPServer RPCInterface mbed C12832_lcd

Link to Notebook Page

Committer:
mmujica6
Date:
Tue Nov 26 01:40:05 2013 +0000
Revision:
1:230c1ec1c9bb
Parent:
0:c498b8bcfc46
Child:
2:9503a713b648
Child:
7:15cbbbe6105c
Changed 1 to 0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
chrisisthefish 0:c498b8bcfc46 1 #include "mbed.h"
chrisisthefish 0:c498b8bcfc46 2
chrisisthefish 0:c498b8bcfc46 3 DigitalOut myled(LED1);
chrisisthefish 0:c498b8bcfc46 4
chrisisthefish 0:c498b8bcfc46 5 int main() {
chrisisthefish 0:c498b8bcfc46 6 while(1) {
mmujica6 1:230c1ec1c9bb 7 myled = 0;
chrisisthefish 0:c498b8bcfc46 8 wait(0.2);
chrisisthefish 0:c498b8bcfc46 9 myled = 0;
chrisisthefish 0:c498b8bcfc46 10 wait(0.2);
chrisisthefish 0:c498b8bcfc46 11 }
chrisisthefish 0:c498b8bcfc46 12 }