create separate folder for arduino and espidf
This commit is contained in:
parent
bc3989f111
commit
a5e0f81930
22 changed files with 0 additions and 0 deletions
12
SourceCode/esp-idf/include/common/theGPIO.h
Normal file
12
SourceCode/esp-idf/include/common/theGPIO.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef GPIO_H
|
||||
#define GPIO_H
|
||||
|
||||
#include "driver/gpio.h"
|
||||
#include "esp_log.h"
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
#include "../network/theWebServer.h"
|
||||
|
||||
esp_err_t relay_put_handler(httpd_req_t *req);
|
||||
|
||||
#endif
|
12
SourceCode/esp-idf/include/common/theLogger.h
Normal file
12
SourceCode/esp-idf/include/common/theLogger.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef LOGGER_H
|
||||
#define LOGGER_H
|
||||
|
||||
#include "esp_log.h"
|
||||
#include "esp_system.h"
|
||||
#include "esp_spi_flash.h"
|
||||
|
||||
void print_logo();
|
||||
void print_esp32_information();
|
||||
void setup_all_log_levels();
|
||||
|
||||
#endif
|
9
SourceCode/esp-idf/include/common/theNVS.h
Normal file
9
SourceCode/esp-idf/include/common/theNVS.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef NVS_H
|
||||
#define NVS_H
|
||||
|
||||
#include "nvs_flash.h"
|
||||
#include "esp_log.h"
|
||||
|
||||
void setup_nvs(void);
|
||||
|
||||
#endif
|
9
SourceCode/esp-idf/include/common/theSNTP.h
Normal file
9
SourceCode/esp-idf/include/common/theSNTP.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef SNTP_H
|
||||
#define SNTP_H
|
||||
|
||||
#include "esp_sntp.h"
|
||||
#include "esp_log.h"
|
||||
|
||||
void setup_sntp();
|
||||
|
||||
#endif
|
Reference in a new issue