initial commit and publish

Dependencies:   mbed

main.cpp

Committer:
kafka
Date:
2020-01-13
Revision:
0:886ff6a91b2c
Child:
1:dcfefb503be4

File content as of revision 0:886ff6a91b2c:

#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);

    }
}