dc

Dependencies:   mbed

main.cpp

Committer:
keerthivasan
Date:
2015-07-23
Revision:
0:b386f9d95fe9

File content as of revision 0:b386f9d95fe9:

#include "mbed.h"

DigitalOut A(p19),B(p20),C(p21),D(p22);
int main()
{
    while(1)
    {
    A=1;C=1;B=0;D=0;
    wait(5);
    B=1;D=1;A=0;C=0;
    wait(5);
    }}