- outsource global variables and objects - move from config.hpp to global.cpp / hpp - rename config.hpp, thus change all includes - re-arrange includes -> in source files instead of header - optimize / make function comment titles more consistent - optimize comments overall - add several temporary files to gitignore - fix unused variable compiler warnings
21 lines
395 B
C++
21 lines
395 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 "gpio_adc.hpp"
|
|
|
|
|
|
//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();
|