Home automation using Xbee radios

Dependencies:   EthernetNetIf HTTPServer RPCInterface mbed C12832_lcd

Link to Notebook Page

Committer:
chrisisthefish
Date:
Tue Nov 26 01:39:51 2013 +0000
Revision:
6:438291b14122
Parent:
0:c498b8bcfc46
Child:
7:15cbbbe6105c
added test comment

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) {
chrisisthefish 0:c498b8bcfc46 7 myled = 1;
chrisisthefish 0:c498b8bcfc46 8 wait(0.2);
chrisisthefish 0:c498b8bcfc46 9 myled = 0;
chrisisthefish 0:c498b8bcfc46 10 wait(0.2);
chrisisthefish 6:438291b14122 11
chrisisthefish 6:438291b14122 12 //This is a test comment
chrisisthefish 0:c498b8bcfc46 13 }
chrisisthefish 0:c498b8bcfc46 14 }