Skip to main content

A library to control the yc1175 indicator in Sonoff iHost

Project description

YC1175 Indicator - Sonoff iHost

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.

Installation

pip install yc1175-indicator

CLI Usage

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

Library Usage

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())

Support

If you would like to help support further development of my HAOS for iHost project consider buying me a coffee!

Buy Me A Coffee

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yc1175_indicator-0.1.1.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distribution

yc1175_indicator-0.1.1-py3-none-any.whl (7.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page