/**
******************************************************************************
* @file : 07_XtrnUntchMPBttn_1a.ino
* @brief : Example for the ButtonToSwitch_ESP32 library XtrnUntchMPBttn class
*
* Framework: Arduino
* Platform: ESP32
*
* The example instantiates a XtrnUntchMPBttn object using:
* - 1 push button between GND and xumpSwitchPin
* - 1 push button between GND and releaseSwitch
* - 1 led with it's corresponding resistor between GND and dmpbLoadPin
*
* ### This example doesn't create extra Tasks:
*
* This simple example instantiates a DbncdDlydMPBttn and a XtrnUntchMPBttn
* object in the setup(), using the first object as the unlatching origin
* for the second object when latched,
* and uses the default "loop ()" (and yes, loop() is part of the loopTask()
* disguised in the Ardu-ESP), in it and checks it's attribute flags locally
* through the getters methods.
*
* When a change in the object's outputs attribute flags values is detected, it
* manages the loads and resources that the switch turns On and Off, in this
* example case are the output of some GPIO pins.
*
* @author : Gabriel D. Goldman
*
* @date : 01/08/2023 First release
* 05/09/2024 Last update
*
******************************************************************************
* @attention This file is part of the examples folder for the ButtonToSwitch_ESP32
* library. All files needed are provided as part of the source code for the library.
*
* Released into the public domain in accordance with "GPL-3.0-or-later" license terms.
*
******************************************************************************
*/
#include <Arduino.h>
#include <ButtonToSwitch_ESP32.h>
const uint8_t dmpbLoadPin{GPIO_NUM_21};
const uint8_t dmpbSwitchPin{GPIO_NUM_25};
const uint8_t releaseSwitchPin{GPIO_NUM_26};
DbncdDlydMPBttn releaseSwitchObj(releaseSwitchPin,true, true, 20, 50);
DbncdDlydMPBttn* releaseSwitchPtr = &releaseSwitchObj;
XtrnUnltchMPBttn dmpbBttn (dmpbSwitchPin, releaseSwitchPtr, true, true, 500, 25);
void setup() {
pinMode(dmpbLoadPin, OUTPUT);
dmpbBttn.begin();
}
void loop() {
if(dmpbBttn.getOutputsChange()){
/* The following commented out section is replaced by the single line following. Use whichever code you're more used to
if (dmpbBttn.getIsOn())
digitalWrite(dmpbLoadPin, HIGH);
else
digitalWrite(dmpbLoadPin, LOW);
*/
digitalWrite(dmpbLoadPin, (dmpbBttn.getIsOn())?HIGH:LOW);
dmpbBttn.setOutputsChange(false);
}
}