22 lines
373 B
C
22 lines
373 B
C
|
#ifndef _shared_h
|
||
|
#define _shared_h
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <esp_wifi.h>
|
||
|
#include "esp_system.h"
|
||
|
|
||
|
#define SSID "ESP8266"
|
||
|
#define PASSW "XR-Lab2023"
|
||
|
#define WIFI_CONFIG
|
||
|
|
||
|
static const char* APP_TAG="CINEKID_LEDS";
|
||
|
|
||
|
#define LOGLN(...) do {\
|
||
|
printf("%s | ", APP_TAG);\
|
||
|
printf(__VA_ARGS__);\
|
||
|
printf("\n");\
|
||
|
} while(0)
|
||
|
|
||
|
#endif // !_shared_h
|