Alix & Sam's combined versions

Dependencies:   BMP280 ELEC350-Practicals-FZ429 TextLCD BME280 ntp-client

SwitchManager.hpp

Committer:
Alix955
Date:
2018-12-13
Revision:
11:42b0c567cc8c
Parent:
9:f5eae5211225

File content as of revision 11:42b0c567cc8c:

#ifndef _SWITCHMANAGER_
#define _SWITCHMANAGER_

#include "mbed.h"
#include "sample_hardware.hpp"
#include "LCD.hpp"

InterruptIn sw1(PE_12);

//This class manages an Interrupt attached to a button
//It automatically manages the switch-debounce using edge detection and timers

class SwitchManager {
private:
// enum State {LOW, LOW_DEBOUNCE, HIGH, HIGH_DEBOUNCE};  
    InterruptIn& switchInterrupt;
    Timeout t;
    
    void waitForRising() {
        //Turn off interrupt
        switchInterrupt.rise(NULL);
        //Turn on timer
        t.attach(callback(this, &SwitchManager::waitForStabilityRising), 0.2);
    }
    
    void waitForStabilityRising() {
        //Look for falling edge
        switchInterrupt.fall(callback(this, &SwitchManager::waitForFalling));
    }
    
    void waitForFalling() {
        m_oDisplay.LCD_Queue.call(&m_oDisplay, &LCD_Data::update_time_date);
        switchInterrupt.fall(NULL);
        t.attach(callback(this, &SwitchManager::waitForStabilityFalling), 0.2);
    }
    
    void waitForStabilityFalling() {
        //Look for rising edge
        switchInterrupt.rise(callback(this, &SwitchManager::waitForRising));
    }
    
public:
    SwitchManager(InterruptIn& intIn) : switchInterrupt(intIn) {
        //Listen for rising edge
        switchInterrupt.rise(callback(this, &SwitchManager::waitForRising));
    }
    ~SwitchManager() {
        //Turn off LED and shut off any ISRs
        switchInterrupt.rise(NULL);
        switchInterrupt.fall(NULL);
        t.detach();
    }
};
     
SwitchManager sm1(sw1);       

#endif