312

Dependencies:   mbed

Revision:
0:158b49779197
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Sep 12 10:57:01 2017 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+Serial pc(USBTX, USBRX);
+BusOut teller(p21, p22, p23, p24, p25, p26);
+
+int main()
+{
+    while(1) {
+        for(int x = 63; x > 0; x--) {
+            teller = x;
+            wait(0.1);
+        }
+    }
+}
\ No newline at end of file