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.
Fork of BERTL14_LINESENSOR by
main.cpp
- Committer:
- bulme_rai
- Date:
- 2014-05-20
- Revision:
- 0:acfdc7c80165
- Child:
- 1:9e097feb3b19
File content as of revision 0:acfdc7c80165:
/*********************************** name: BERTL14_LINESENSOR author: Wolfgang Raimann email: rai@bulme.at description: Die vier Sensoren auf der Unterseite werden auf die LEDs D10-D13 durchgeschaltet ***********************************/ #include "mbed.h" DigitalOut myled(LED1); BusIn linesensor(p18, p16, p19, p17); BusOut leds(LED1, LED2, LED3, LED4); int main() { while(1) { leds = linesensor; } }