change wait from 1.0 to 0.5

Dependencies:   mbed

Fork of __collab_test by Tedd OKANO

Committer:
ytsuboi
Date:
Sat Jun 09 05:23:43 2012 +0000
Revision:
7:fdf571493c66
Parent:
6:e7484c826f75
chenge wait from 1.0 to 0.5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okano 5:2ccbf6d5d336 1 #include "mbed.h"
okano 5:2ccbf6d5d336 2
okano 5:2ccbf6d5d336 3 DigitalOut myled(LED1);
okano 5:2ccbf6d5d336 4
okano 5:2ccbf6d5d336 5 int main() {
okano 5:2ccbf6d5d336 6 while(1) {
okano 5:2ccbf6d5d336 7 myled = 1;
ytsuboi 7:fdf571493c66 8 wait(0.5);
okano 5:2ccbf6d5d336 9 myled = 0;
ytsuboi 7:fdf571493c66 10 wait(0.5);
okano 5:2ccbf6d5d336 11 }
okano 5:2ccbf6d5d336 12 }