Govee Bulb Color Change Speed Adjustment & Custom Widget Integration

I recently purchased a Govee smart bulb and have been exploring its features. While I love the breathe scene, I find the color transitions a bit too fast. Does anyone know how to adjust the speed of the color change? I’d love to make it slower to create a more relaxed ambiance in my living room.

On another note, I’ve been trying to set up a custom widget using an f7-chip to navigate to a specific page when clicked. Here’s the code I’m working with:

{
“component”: “f7-block”,
“config”: {
“style”: {
“position”: “absolute”,
“top”: “60px”,
“left”: “16px”,
“width”: “100%”
},
“slots”: {
“default”: [
{
“component”: “f7-chip”,
“config”: {
“iconF7”: “wand_stars”,
“text”: “Automatik”,
“style”: {
“margin-bottom”: “10px”,
“font-size”: “16px”
},
“–f7-chip-bg-color”: “rgba(255, 255, 255, 0)”,
“iconColor”: “‘=items.AutomatisierungGruppenStatus.state == “ON”? “green” : “red”’”,
“iconSize”: “20”,
“action”: {
“navigate”: {
“actionPage”: “page:Automaitisierung”
}
}
}
}
]
}
}
}

Unfortunately, this setup isn’t working as expected. Any tips or suggestions would be greatly appreciated! I’m also looking for any cool DIY projects or tips to enhance my smart home setup. If anyone has recommendations or resources, please share!

Lastly, I’ve been experimenting with integrating Snapcast and TTS for whole-house audio notifications. I’m using the following command:

bash
ffmpeg -y -i {} -f u16le -acodec pcm_s16le -ac 2 -ar 48000 /tmp/snapcast_tts

While it works manually, I’m encountering some issues when automating it through Home Assistant. Any insights or troubleshooting advice would be wonderful. Thanks in advance for your help!