initial commit and publish

Dependencies:   mbed

Revision:
0:886ff6a91b2c
Child:
1:dcfefb503be4
diff -r 000000000000 -r 886ff6a91b2c main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jan 13 17:13:54 2020 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+// #define BUTTON1 A1
+#define BUTTON1 p14
+BusOut myLeds(LED1,LED2,LED3,LED4);
+DigitalIn button(BUTTON1);
+
+void nibbleLeds(int value);
+
+const int INIT = 0x03;
+
+
+int main() {
+    int anzahl, anz;
+    uint8_t value = INIT;
+    // anzahl = lauflicht(true, 400, anz = 0);
+    
+    printf("anzahl = %d\n", anzahl);
+    nibbleLeds(value);
+    wait(0.1);
+
+    }
+}