osc.h 273 B

12345678910111213
  1. //OSC via udp
  2. #include <WiFiUdp.h>
  3. #include <OSCMessage.h>
  4. WiFiUDP UDP; //udp listener
  5. /* UDP CONFIGURATION */
  6. int UDP_In_Port = 9000; //udp port input for ESP
  7. //default address and port to send to (IP read from config)
  8. IPAddress UDP_Out_IP ;
  9. int UDP_Out_Port = 8000 ;