Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832_lcd mbed
main.cpp@0:52af93df032d, 2018-03-07 (annotated)
- Committer:
- slueke
- Date:
- Wed Mar 07 18:54:40 2018 +0000
- Revision:
- 0:52af93df032d
Praktikum2_1_AMSL
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
slueke | 0:52af93df032d | 1 | #include "mbed.h" |
slueke | 0:52af93df032d | 2 | |
slueke | 0:52af93df032d | 3 | |
slueke | 0:52af93df032d | 4 | DigitalOut mypin(p21); |
slueke | 0:52af93df032d | 5 | |
slueke | 0:52af93df032d | 6 | int main() { |
slueke | 0:52af93df032d | 7 | while(1) { |
slueke | 0:52af93df032d | 8 | mypin = 1; |
slueke | 0:52af93df032d | 9 | mypin = 0; |
slueke | 0:52af93df032d | 10 | |
slueke | 0:52af93df032d | 11 | |
slueke | 0:52af93df032d | 12 | } |
slueke | 0:52af93df032d | 13 | } |