You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can anyone address this issue I'm having with windows and participants name?
The names display correctly on Mac OS but not on windows from within the 'participants' window, its being displayed as 'AppleMIDI-Arduino'. They do display correctly in the directory though.
Code & photos attached, any help would be appreciated!
// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = {0x32, 0xAE, 0xA4, 0x07, 0x0D, 0x66};
APPLEMIDI_CREATE_DEFAULTSESSION_INSTANCE();
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void setup()
{
if (Ethernet.begin(mac) == 0)
for (;;);
MIDI.begin();
// Initialize the Bonjour/MDNS library. You can now reach or ping this
// Arduino via the host name "arduino.local", provided that your operating
// system is Bonjour-enabled (such as MacOS X).
// Always call this before any other method!
EthernetBonjour.begin("LTM_Pro");//This is the address to ping
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Guys,
Can anyone address this issue I'm having with windows and participants name?
The names display correctly on Mac OS but not on windows from within the 'participants' window, its being displayed as 'AppleMIDI-Arduino'. They do display correctly in the directory though.
Code & photos attached, any help would be appreciated!
`#include <Ethernet.h>
#include <EthernetBonjour.h> // https://github.com/TrippyLighting/EthernetBonjour
#include <AppleMIDI.h>
// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = {0x32, 0xAE, 0xA4, 0x07, 0x0D, 0x66};
APPLEMIDI_CREATE_DEFAULTSESSION_INSTANCE();
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void setup()
{
if (Ethernet.begin(mac) == 0)
for (;;);
MIDI.begin();
// Initialize the Bonjour/MDNS library. You can now reach or ping this
// Arduino via the host name "arduino.local", provided that your operating
// system is Bonjour-enabled (such as MacOS X).
// Always call this before any other method!
EthernetBonjour.begin("LTM_Pro");//This is the address to ping
EthernetBonjour.addServiceRecord("LTM Pro._apple-midi",
AppleMIDI.getPort(),
MDNSServiceUDP);
}
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void loop()
{
// Listen to incoming notes
MIDI.read();
EthernetBonjour.run();
}`
Beta Was this translation helpful? Give feedback.
All reactions