1.1

Dependencies:   mbed

main.cpp

Committer:
olemh88
Date:
2017-09-12
Revision:
0:0aee8e0d3b69

File content as of revision 0:0aee8e0d3b69:

#include "mbed.h"
Serial pc(USBTX, USBRX);
BusOut teller(p21, p22, p23, p24, p25, p26);

int main()
{
    while(1) {
        for(int x = 0; x < 63; x++) {
            teller = x;
            wait(0.1);
        }
    }
}