Marcos Lucas
/
blinksos
Programa para testes
main.cpp@8:73a7f68c7ad9, 2015-03-03 (annotated)
- Committer:
- mlucas82
- Date:
- Tue Mar 03 07:50:59 2015 +0000
- Revision:
- 8:73a7f68c7ad9
- Parent:
- 7:0251200bc0af
- Child:
- 9:b1cf03aefec1
#2
Who changed what in which revision?
User | Revision | Line number | New 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 | 7:0251200bc0af | 5 | |
mlucas82 | 8:73a7f68c7ad9 | 6 | |
mlucas82 | 1:8c81337d6d2e | 7 | void pisca() |
mlucas82 | 1:8c81337d6d2e | 8 | { |
mlucas82 | 1:8c81337d6d2e | 9 | myled = 1; |
Marcos A. Lucas |
5:276a28abdd96 | 10 | wait(0.5); |
mlucas82 | 1:8c81337d6d2e | 11 | myled = 1; |
mlucas82 | 1:8c81337d6d2e | 12 | } |
mlucas82 | 1:8c81337d6d2e | 13 | |
mlucas82 | 0:a6f65085b80e | 14 | int main() { |
mlucas82 | 0:a6f65085b80e | 15 | while(1) { |
mlucas82 | 1:8c81337d6d2e | 16 | pisca(); |
lucas_dataware | 2:0d59d31e4ffb | 17 | wait(0.3); |
mlucas82 | 0:a6f65085b80e | 18 | } |
mlucas82 | 0:a6f65085b80e | 19 | } |