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.
main.cpp
- Committer:
- harerimana
- Date:
- 2020-11-01
- Revision:
- 0:392dea3408f2
- Child:
- 1:18bf4c2c22ec
File content as of revision 0:392dea3408f2:
##include "mbed.h" DigitalOut trafficYellowlight(p7);// declaration of Pin 7 as output DigitalIn pedestrainButton(p8); // declaration of Pin 8 as Input int main() { while(1) { trafficYellowlight=0; trafficYellowlight=!pedestrainButton; wait_ms(5000); } }