Add evalSwitch instance for sw on adc (testing)

Test all new changes in switchesAnalog and evaluatedSwitch
This commit is contained in:
jonny_ji7 2022-09-12 09:58:08 +02:00
parent 38ad266488
commit d2d85952df
3 changed files with 11 additions and 0 deletions

View File

@ -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_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) 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 //create buzzer object with no gap between beep events
buzzer_t buzzer(GPIO_BUZZER, 0); buzzer_t buzzer(GPIO_BUZZER, 0);

View File

@ -4,6 +4,7 @@ extern "C" {
} }
#include "gpio_evaluateSwitch.hpp" #include "gpio_evaluateSwitch.hpp"
#include "buzzer.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_PRESET2;
extern gpio_evaluatedSwitch SW_PRESET3; extern gpio_evaluatedSwitch SW_PRESET3;
extern gpio_evaluatedSwitch SW_ADC34_0;
//create global buzzer object //create global buzzer object
extern buzzer_t buzzer; extern buzzer_t buzzer;

View File

@ -92,7 +92,11 @@ extern "C" void app_main()
while(1){ while(1){
vTaskDelay(500 / portTICK_PERIOD_MS); vTaskDelay(500 / portTICK_PERIOD_MS);
SW_ADC34_0.handle();
switchesAnalog_getState(0); switchesAnalog_getState(0);
if (SW_ADC34_0.risingEdge){
printf("rising edge detected\n");
}
} }
} }