Opticz
June 17, 2025, 6:20am
1
I’m looking to find a way to sync 6 pool fountains that have a simple on & off function on my homeassistant via zigbee to be somewhat reactive to music from a aux input, does anyone know what route would be best to go with this?
Opticz
June 18, 2025, 7:28am
4
No, prehaps I should’ve clarified, I’m basically trying to make on/off switches somewhat reactive to music coming out of my sonos amp aux output.
you need a few stuff
Capture the Audio (from your Aux input)
I’ve developed a custom Home Assistant add-on to dynamically sync Wi-Fi / zigbee enabled LED light brightness with ambient noise levels / dB levels. This project uses a USB microphone connected to the raspberry pi to monitor sound levels in real time and adjusts the brightness of your lights accordingly. Below is an overview of the setup and functionality:
A Note from Me
I am new to Home Assistant, and this is a small project I worked on to learn more about its capabilities. My Raspberry Pi is…
You need 6 individual relays to switch your fountains on and off so many options here
and you need an automation something like this
trigger:
- platform: numeric_state
entity_id: sensor.audio_rms
above: 0.1
action:
- service: switch.turn_on
target:
entity_id: switch.fountain_1
options
Last weekend I put a WiFi RGB LED strip on the back of my TV. I use my Chromecast on my TV to cast Spotify to pretty frequently for listening to music. One night my roommate said that it would be cool if the lights behind my TV changed color based on what album I was playing through Spotify. So, I started looking into ways to do this.
Thanks to AppDaemon and a Python library called Colorthief , I was able to come up with a solution. Below is the code for my AppDaemon app that changes the color o…
💦 A sound-reactive fountain that dances to your music. Built with Arduino, MOSFETs, submersible pumps, and audio magic.