Files
mega_hacs/.experiment.py
Andrey Viktorov 1270ea2ee2 - add rgbw support
- add ws28 support
- add transitions to pwm
- add units of measurement for all i2c sensors
- remove mqtt support
2021-03-23 15:10:50 +03:00

5 lines
121 B
Python

from itertools import permutations
RGB_COMBINATIONS = [''.join(x) for x in permutations('rgb')]
print(RGB_COMBINATIONS)