Add evalSwitch instance for sw on adc (testing)
Test all new changes in switchesAnalog and evaluatedSwitch
This commit is contained in:
parent
38ad266488
commit
d2d85952df
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user