Programa para testes

Dependencies:   mbed

Committer:
mlucas82
Date:
Tue Mar 03 07:52:58 2015 +0000
Revision:
9:b1cf03aefec1
Parent:
8:73a7f68c7ad9
Child:
12:4a00176dbc8a
Fixed #2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mlucas82 0:a6f65085b80e 1 #include "mbed.h"
mlucas82 0:a6f65085b80e 2
mlucas82 0:a6f65085b80e 3 DigitalOut myled(LED1);
mlucas82 0:a6f65085b80e 4
mlucas82 1:8c81337d6d2e 5 void pisca()
mlucas82 1:8c81337d6d2e 6 {
mlucas82 1:8c81337d6d2e 7 myled = 1;
Marcos A. Lucas 5:276a28abdd96 8 wait(0.5);
mlucas82 1:8c81337d6d2e 9 myled = 1;
mlucas82 1:8c81337d6d2e 10 }
mlucas82 1:8c81337d6d2e 11
mlucas82 0:a6f65085b80e 12 int main() {
mlucas82 0:a6f65085b80e 13 while(1) {
mlucas82 1:8c81337d6d2e 14 pisca();
lucas_dataware 2:0d59d31e4ffb 15 wait(0.3);
mlucas82 0:a6f65085b80e 16 }
mlucas82 0:a6f65085b80e 17 }