The first thing I did was grab the Maestro Linux software. Then I used Homebrew to install Mono:
$ brew install mono
This gave me some obnoxious errors about missing libraries, which were sorted out by an additional installation:
$ brew cask install mono-mdk
After this, it became possible to fire up the Maestro Control Center GUI via:
$ env PATH=/Library/Frameworks/Mono.framework/Commands:$PATH mono MaestroControlCenter
However, it seems not to play nicely with the default installation of libusb. So I uninstalled the default version and installed the cutting edge universal version that would hopefully play better with Mono:
$ brew uninstall libusb
$ brew install libusb --universal --HEADAfter this, I was able to open the GUI, although it was almost unusable due to visual artifacts. However, it was enough to verify that I could move a servo on channel 0 and ensure that the controller settings had the right values.
Excellent!
ReplyDeletebrew install libusb --universal --HEAD
solved my problem of MaestroControlCenter not finding libusb!
MaestroControlCenter graphics seem OK.