A library that implements the serial protocol for communication with the indicator module on the Sonoff iHost. This module controls the 4 buttons and the main RGB indicator.
WARNING: This is only useful if you have flashed linux or HAOS on your iHost.
pip install yc1175-indicator
For convience you can control the LED's from the CLI wrapper.
$ indicator-cli <led_index> --effect <effect_num> --rgb <rgb tuple>
Example:
$ indicator-cli 4 --effect 2 --rgb 0 0 255
Print LED and effect codes:
$ indicator-cli --list
import asyncio
from yc1175_indicator import indicator
async def test_callback(idx, event):
print(f"Button press: {idx}, type: {event}")
async def main():
my_yc = indicator.HassAPI()
await my_yc.setup()
my_yc.register_event_callback(test_callback)
rgb = (0,0,255)
yc.light_on(4, 1, rgb)
try:
# wait for button press
await asyncio.sleep(30)
except asyncio.CancelledError:
pass
yc.light_off(4)
if __name__ == "__main__":
asyncio.run(main())
If you would like to help support further development of my HAOS for iHost
project consider buying me a coffee!