- create new files with code for demultiplexing the 4 switches from the one analog signal - define lookup table with measurements done with the build pcb, test switches and esp32 breakout board - add note do config that gpio used for digital in is now used for this multiplexer - main.cpp: disable control task, run new handle function in a loop for testing
21 lines
286 B
C++
21 lines
286 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
|
|
|
|
|
|
|
|
void switchesAnalog_handle();
|