Code-Basis für Programm zum Taster-Entprellen

Dependencies:   SB1602E mbed

Fork of Laser-Distance by Stefan Kummer

main.cpp

Committer:
KStefan
Date:
2018-09-30
Revision:
9:a4a4f8cc4019
Parent:
8:0f74264cc38a
Child:
10:f727c310c86f

File content as of revision 9:a4a4f8cc4019:

#include "mbed.h"
#include "SB1602E.h"
#define USE_I2C_2V8

DigitalOut myled(P0_8); // 7=rot, 8=grün, 9=blau
DigitalIn sw_o(P0_12);
DigitalIn sw_b(P0_13);
DigitalIn sw_g(P0_14);

I2C i2c_disp(P0_5, P0_4); //  SDA, SCL auf LPC11U24
SB1602E lcd(i2c_disp);

int count_o, count_b, count_g = 0;

int main()
{
    lcd.printf(0, "Red Blue Green\r");    //  Parameter von printf auf LCD: Zeilennummer (0 or 1), string
    while(1) {

        lcd.printf( 1,1, "%d   %d   %d", count_o, count_b, count_g);

        myled = !myled;

    }
}