initial commit and publish

Dependencies:   mbed

main.cpp

Committer:
kafka
Date:
2020-01-13
Revision:
1:dcfefb503be4
Parent:
0:886ff6a91b2c
Child:
2:6a2101a16cef

File content as of revision 1:dcfefb503be4:

#include "mbed.h"
// #define BUTTON1 A1
#define BUTTON1 p14
BusOut myLeds(LED1,LED2,LED3,LED4);
DigitalIn button(BUTTON1);

void nibbleLeds(int value);
void printb(uint8_t x);
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);
    printb(myleds);
    wait(0.1);
}

void nibbleLeds(int value) {
    myLeds = value % 16;
}

void printb(uint8_t x){
    for(int i = sizeof() << 3; i; i--)
        putchar('0' + ((x >> (i - 1)) & 1));
    printf("\n");
}