Masahiko Yamazaki
/
Lab3-00_33conv_operation_check_lite
main.cpp@2:5155eb98b083, 2021-08-23 (annotated)
- Committer:
- heptasat2021
- Date:
- Mon Aug 23 05:34:57 2021 +0000
- Revision:
- 2:5155eb98b083
- Parent:
- 1:7bb55b0a4b47
- Child:
- 3:e21c71a08239
For Hepta-Sat Lite
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
heptasat2021 | 0:da0f6aca15b8 | 1 | #include "mbed.h" |
heptasat2021 | 2:5155eb98b083 | 2 | DigitalOut myled(PB_1); |
heptasat2021 | 0:da0f6aca15b8 | 3 | int main() |
heptasat2021 | 0:da0f6aca15b8 | 4 | { |
heptasat2021 | 1:7bb55b0a4b47 | 5 | while (true) { |
heptasat2021 | 1:7bb55b0a4b47 | 6 | myled = 1; |
heptasat2021 | 1:7bb55b0a4b47 | 7 | wait_ms(500); |
heptasat2021 | 1:7bb55b0a4b47 | 8 | myled = 0; |
heptasat2021 | 0:da0f6aca15b8 | 9 | wait_ms(500); |
heptasat2021 | 0:da0f6aca15b8 | 10 | } |
heptasat2021 | 0:da0f6aca15b8 | 11 | } |