sendInvite (WIFI problem) #164
Replies: 2 comments 1 reply
-
Hi krystianlenc, Use this example https://github.com/Hackmancoltaire/Arduino-AppleMidi-Library/tree/master/examples/Esp8266_NoteOnOffEverySec AppleMIDI.OnConnected(OnAppleMidiConnected); In the Serial Monitor I see the MIDI-Commands from my iPad to control our lights (currently by PC_Dimmer, but maybe in the future by a fork of ESP8266_ArtNetNode_DMX): 8:38:41.975 -> WiFi connected |
Beta Was this translation helpful? Give feedback.
-
Isn't this same example available in the current code? |
Beta Was this translation helpful? Give feedback.
-
Hi! I need to make a midi cc receiver that converts midi cc to dmx (artnet) to control the lighting controller from the midiwirst application (iphone, apple watch). Since I don't want to use an additional computer for this, I need to connect the applemidi session directly to the iPhone. I found a way:
IPAddress remote(2, 1, 1, 116);
AppleMIDI.sendInvite(remote, DEFAULT_CONTROL_PORT); // port is 5004 by default
unfortunately, it only compiles from ethernet, when using wifi I get a compilation error "Compilation error: 'class appleMidi::AppleMIDISession' has no member named 'sendInvite'"
Can I do anything in this case? I want to use esp8266 (esp01s) to keep the dimensions of the device as small as possible, WiFi latency is not a problem for me!
Beta Was this translation helpful? Give feedback.
All reactions