This application provides a link between the Behringer X32 Sound-mixer and HASSIO. All X32 messages are transmitted to HomeAssistant via MQTT auto-discovery. A JSON config file allows changes to be made to X32 endpoints, (icons, types, maps, etc)
This GoLang package allows you to sync your Behringer X32 mixer with your HomeAssistant instance. It has a complete implementation of all X32 endpoints. However, there are a few dodgy things.
890AI'm currently using it in my HomeAssistant instance.
This is currently usable for my needs, (seeing all data in HomeAssistant), but there's quite a few things that need to be completed.
I've implemented most of the features I've wanted to, but the current roadmap is:
- Make this a HASSIO add-on.
- Provide mixer icons and images for HASSIO.
- Add snazzy HASSIO cards to enable quick adding of mixer components.
Note: Until I create a HASSIO add-on, you will have to run this manually.
The following config options are required. Make sure you set these correctly.
$ ./bin/GoSungrow config write \
--mqtt-host="<YOUR HASSIO IP ADDRESS>" \
--mqtt-password="<YOUR HASSIO PASSWORD>" \
--mqtt-port="1883" \
--mqtt-user="<YOUR HASSIO USER>" \
--x32-host="<YOUR X32 IP ADDRESS>"
Using config file '/Users/mick/.GoSungrow/config.json'
Using environment variables instad of flags.
+-----------------+------------+-------------------+--------------------------------+--------------------------------+
| FLAG | SHORT FLAG | ENVIRONMENT | DESCRIPTION | DEFAULT |
+-----------------+------------+-------------------+--------------------------------+--------------------------------+
| --x32-host | | X32_X32_HOST | Behringer X32: Host / IP | |
| | | | address. | |
| --x32-port | | X32_X32_PORT | Behringer X32: Port. | 10023 |
| --x32-user | -u | X32_X32_USER | Behringer X32: Username. | |
| --x32-password | -p | X32_X32_PASSWORD | Behringer X32: Password. | |
| --x32-timeout | | X32_X32_TIMEOUT | Behringer X32: Timeout. | 30s |
| --mqtt-user | | X32_MQTT_USER | HASSIO: mqtt username. | |
| --mqtt-password | | X32_MQTT_PASSWORD | HASSIO: mqtt password. | |
| --mqtt-host | | X32_MQTT_HOST | HASSIO: mqtt host. | |
| --mqtt-port | | X32_MQTT_PORT | HASSIO: mqtt port. | |
| --config | | X32_CONFIG | GoX32: config file. | /Users/mick/.GoX32/config.json |
| --debug | | X32_DEBUG | GoX32: Debug mode. | false |
| --quiet | -q | X32_QUIET | GoX32: Silence all messages. | false |
+-----------------+------------+-------------------+--------------------------------+--------------------------------+