Mark Schwarzer / Mbed 2 deprecated Schwarzer_A2_Digital_Input

Dependencies:   mbed

main.cpp

Committer:
markschwarzer
Date:
2020-10-01
Revision:
2:d7665651b223
Parent:
0:cc0c210616de

File content as of revision 2:d7665651b223:

#include "mbed.h"

DigitalOut led1(LED1);
DigitalOut led2(LED2);
DigitalIn switch_input(p17);
Serial pc(USBTX, USBRX);

int second() {
int count = 0;
while(count< 10) {
        if(switch_input== 1){
            int check = switch_input;
            pc.printf("DBG [%d] count: %d\r\n", switch_input.read(), count);
            
            while(check){
                if(check - switch_input== 1){
                count++;
                check= 0;
                pc.printf("DBG [%d] count: %d\r\n", switch_input.read(), count);
                 }}}}
        return count;}
        
int main() {
while(1) {
    if (switch_input==1) {
        led2= 0;
        led1= 1;
        wait(1);
        led1= 0;
        wait(1);
        }
        else if (switch_input==0) {
            led1= 0;
            led2= 1;
            wait(0.3);
            led2= 0;
            wait(0.3); }
            }}