mirror of
https://github.com/0015/ThatProject.git
synced 2026-01-13 01:37:43 +03:00
11 lines
315 B
C
11 lines
315 B
C
typedef enum STATES {Idle, Listening, Speaking};
|
|
STATES states = Idle;
|
|
|
|
typedef enum ROLE {Server, Client};
|
|
ROLE deviceRole = Client;
|
|
|
|
const char* ssid = "ESP32-THAT-PROJECT";
|
|
const char* password = "California";
|
|
|
|
const char* websockets_server_host = "192.168.4.1";
|
|
const uint16_t websockets_server_port = 8888; |