lathoub / Arduino-AppleMIDI-Library

Send and receive MIDI messages over Ethernet (rtpMIDI or AppleMIDI)
Other
306 stars 66 forks source link

[Question]Communication between Arduinos #73

Closed bauerbyter closed 4 years ago

bauerbyter commented 4 years ago

Hey, sorry, I was looking around but I dont find an answer. Is it possible to communicate with your library beetween multiple Arduinos (or at least two) without any PC, or something similar?

I want a (or more) Footcontroller with ESP32 and a Box (also ESP32) next to my amp which is translating the apple midi to standard midi.

Thanks in advance

Greetings

alf45tar commented 4 years ago

The feature you are requesting is already implemented into PedalinoMini.

bauerbyter commented 4 years ago

Okay thats amazing. But how do I do this? (should I ask this in a PedalinoMini Issue?)

alf45tar commented 4 years ago

It is better to move the discussion into PedalinoMini because is not AppleMidi specific.

AppleMidi library is a session listener over WiFi. It does not support session initiation functionalities, which requires the use of an external session initiator on the network to open a RTP-MIDI session with the libray. This session initiator can be a macOS computer (Audio MIDI Setup->MIDI Studio->MIDI Network Setup) or a Windows computer with the RTP-MIDI driver, an app on your iOS device (for example MIDI Network) or an embedded RTP-MIDI device.

PedalinoMini implement the feature you requested via ipMidi because it do not request a computer.

bauerbyter commented 4 years ago

okay thanks again!