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: mbed
main.cpp
- Committer:
- anbukumaran
- Date:
- 2015-07-23
- Revision:
- 0:f1e86a42e504
File content as of revision 0:f1e86a42e504:
#include "mbed.h" DigitalOut Q1(p23); DigitalOut Q2(p20); DigitalOut Q3(p22); DigitalOut Q4(p21); int main() { Q1=1,Q2=0,Q3=0,Q4=1; wait(1); Q1=0,Q2=1,Q3=1,Q4=0; wait(1); }