cable-length-cutter/main/switchesAnalog.hpp
jonny_ji7 09ee67f583 Add code for demuxing 4 switch signals from adc pin
- 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
2022-09-11 19:58:13 +02:00

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();