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.
A9_Lekt1_Laufbus_Digitalio.cpp
- Committer:
- robertbuc
- Date:
- 2020-01-12
- Revision:
- 1:f67201cad9f7
- Parent:
- 0:b4e3ba4a7bd3
File content as of revision 1:f67201cad9f7:
/* 9. [LaufBus] Erstelle mit Hilfe der BusOut ein Lauflicht mit den integrierten vier blauen LEDs. */ #include "mbed.h" BusOut leds(D0,D3,D6,D9,D11,D12,A1,A5); int main() { while(1) { leds=0x01; wait_ms(500); for(int i=1;i<=8;i++) { leds=leds<<1; wait_ms(500); } } }