mirror of
https://github.com/andvikt/mega_hacs.git
synced 2025-12-10 16:44:28 +05:00
- add ws28 support - add transitions to pwm - add units of measurement for all i2c sensors - remove mqtt support
5 lines
121 B
Python
5 lines
121 B
Python
from itertools import permutations
|
|
|
|
RGB_COMBINATIONS = [''.join(x) for x in permutations('rgb')]
|
|
|
|
print(RGB_COMBINATIONS) |