Automatically broadcast MIDI service using ESP8266 #121
-
I want ESP8266 to broadcast its service on the network. When I start MIDI network app - it automatically lists the rtpMIDI session from my desktop (Tobias' app). However, for ESP8266 I have to manually enter the address and port. Is there a way I can make ESP8266 "broadcast" its service so that I don't have to enter IP/port manually. The reason being that when I connect to my wifi network - the router assigns a different IP to ESP8266 everytime - and with the current example - I have to obtain the IP address from text printed to serial port. I want to make my MIDI device standalone - and not have to use a PC attached to it. Is this even possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Broadcasting the RTP-MIDI service is a mDNS function, and not a core part of the RTP-MIDI spec (albeit very handy and useful). See the mDNS example for SAMD in this lib. ESP8266 mDNS example (and lib) here |
Beta Was this translation helpful? Give feedback.
Broadcasting the RTP-MIDI service is a mDNS function, and not a core part of the RTP-MIDI spec (albeit very handy and useful).
See the mDNS example for SAMD in this lib. ESP8266 mDNS example (and lib) here