- //OSC via udp
- #include <WiFiUdp.h>
- #include <OSCMessage.h>
- WiFiUDP UDP; //udp listener
- /* UDP CONFIGURATION */
- int UDP_In_Port = 9000; //udp port input for ESP
- //default address and port to send to (IP read from config)
- IPAddress UDP_Out_IP ;
- int UDP_Out_Port = 8000 ;
|