diff --git a/main/config.cpp b/main/config.cpp index e7fc5f6..1f6d343 100644 --- a/main/config.cpp +++ b/main/config.cpp @@ -10,6 +10,8 @@ gpio_evaluatedSwitch SW_PRESET1(GPIO_SW_PRESET1, true, false); //pullup true, no gpio_evaluatedSwitch SW_PRESET2(GPIO_SW_PRESET2, false, true); //pullup false, INVERTED (switch to 3V3, pulldown on pcb soldered) gpio_evaluatedSwitch SW_PRESET3(GPIO_SW_PRESET3, false, true); //pullup false, INVERTED (switch to 3V3, pulldown on pcb soldered) +//evaluated switch with function to obtain the current input state instead of gpio +gpio_evaluatedSwitch SW_ADC34_0 (&switchesAnalog_getState_sw0); //create buzzer object with no gap between beep events buzzer_t buzzer(GPIO_BUZZER, 0); diff --git a/main/config.hpp b/main/config.hpp index 23ed339..9fc9143 100644 --- a/main/config.hpp +++ b/main/config.hpp @@ -4,6 +4,7 @@ extern "C" { } #include "gpio_evaluateSwitch.hpp" #include "buzzer.hpp" +#include "switchesAnalog.hpp" //=================================== @@ -80,5 +81,9 @@ extern gpio_evaluatedSwitch SW_PRESET1; extern gpio_evaluatedSwitch SW_PRESET2; extern gpio_evaluatedSwitch SW_PRESET3; + + +extern gpio_evaluatedSwitch SW_ADC34_0; + //create global buzzer object extern buzzer_t buzzer; diff --git a/main/main.cpp b/main/main.cpp index 9bc7ace..5d5f261 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -92,7 +92,11 @@ extern "C" void app_main() while(1){ vTaskDelay(500 / portTICK_PERIOD_MS); + SW_ADC34_0.handle(); switchesAnalog_getState(0); + if (SW_ADC34_0.risingEdge){ + printf("rising edge detected\n"); + } } }