switchesAnalog: - Add functions for obtaining states from each switch - Remove public handle function, (now run locally at each state request of a pin) - adjust main.cpp to work with new functions
26 lines
482 B
C++
26 lines
482 B
C++
#pragma once
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include "esp_log.h"
|
|
#include "driver/adc.h"
|
|
#include <math.h>
|
|
|
|
}
|
|
|
|
#include "config.hpp"
|
|
|
|
|
|
#define GPIO_BUTTONS GPIO_NUM_34
|
|
#define ADC_CHANNEL_BUTTONS ADC1_CHANNEL_6 //gpio 34
|
|
|
|
|
|
//get current state of certain switch
|
|
bool switchesAnalog_getState(int swNumber);
|
|
|
|
bool switchesAnalog_getState_sw0();
|
|
bool switchesAnalog_getState_sw1();
|
|
bool switchesAnalog_getState_sw2();
|
|
bool switchesAnalog_getState_sw3();
|