spacemanspiff2007 / PyArtNet

"Python wrappers for the Art-Net protocol to send DMX over Ethernet"
GNU General Public License v3.0
67 stars 13 forks source link

Discussion: effects #40

Closed Breina closed 1 year ago

Breina commented 1 year ago

HA has the possibility of adding arbitrary effects on a per-light basis. As such:

image

I think it might be a fun feature to implement in PyArtNet, given that it's already doing the transitional animations. It has the threading infrastructure to handle this as well.

Might make more sense to do it externally though, just poking and prodding here first. :)

spacemanspiff2007 commented 1 year ago

You can already do that. Just create your own Fade implementation which inherits from FadeBase and pass it to set_fade

Breina commented 1 year ago

Awesome! :)