20 lines
374 B
C
20 lines
374 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "assert.h"
|
|
#include "portmacro.h"
|
|
#include <esp_event.h>
|
|
#include <esp_now.h>
|
|
#include <esp_wifi.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/queue.h>
|
|
#include <freertos/task.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#define MASTER_MODE_PIN GPIO_NUM_1 // Jumper-Erkennungspin
|
|
|
|
#endif
|