This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WebServer.h> | |
#include <WiFi.h> | |
#include <WiFiUdp.h> | |
// the IP of the machine to which you send msgs - this should be the correct IP in most cases (see note in python code) | |
#define CONSOLE_IP "192.168.1.2" | |
#define CONSOLE_PORT 4210 | |
const char* ssid = "ESP32"; | |
const char* password = "12345678"; | |
WiFiUDP Udp; |