{"id":13801990,"url":"https://github.com/cbrand/eiscp-micropython","last_synced_at":"2026-03-17T16:33:24.137Z","repository":{"id":44468342,"uuid":"326026293","full_name":"cbrand/eiscp-micropython","owner":"cbrand","description":"Micropython implementation of the Onkyo EISCP protocol","archived":false,"fork":false,"pushed_at":"2022-07-11T10:38:46.000Z","size":42,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-18T13:12:44.625Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cbrand.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-01T17:40:00.000Z","updated_at":"2022-11-05T22:07:47.000Z","dependencies_parsed_at":"2022-09-19T06:31:51.007Z","dependency_job_id":null,"html_url":"https://github.com/cbrand/eiscp-micropython","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbrand%2Feiscp-micropython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbrand%2Feiscp-micropython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbrand%2Feiscp-micropython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbrand%2Feiscp-micropython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cbrand","download_url":"https://codeload.github.com/cbrand/eiscp-micropython/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253942524,"owners_count":21988072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T00:01:32.428Z","updated_at":"2025-12-14T18:47:30.411Z","avatar_url":"https://github.com/cbrand.png","language":"Python","readme":"# EISCP Micropython #\n\n[![PyPI](https://img.shields.io/pypi/v/eiscp-micropython) ![MIT Licensed](https://img.shields.io/pypi/l/eiscp-micropython)](https://pypi.org/project/eiscp-micropython/)\n\nThis is an implementation of the Onkyo EISCP protocol for running on Microcontrollers utilizing [MicroPython](http://www.micropython.org/).\n\nIt is a heavily stripped down version of the [Onkyo EISCP](https://github.com/miracle2k/onkyo-eiscp) library and supports\nsending commands to connected devices in the same IP-Network.\n\nCompared to the original library, this one is also utilizing [uasyncio](https://docs.micropython.org/en/latest/library/uasyncio.html) for being able to run the project easily with other code.\n\n\n## Usage ##\n\nAs an example turning on the first device in the network and changing the audio input.\n\n```python\nimport uasyncio\nimport network\nfrom eiscp import discover\n\nwifi = network.WLAN(network.STA_IF)\nwifi.active(True)\nwifi.connect('SSID', 'PW')\n\nloop = uasyncio.get_event_loop()\n\nclients = loop.run_until_complete(discover())\n\nclient = clients[0]\n\nloop.run_until_complete(client.power_on())\nloop.run_until_complete(client.command(\"SLI\", \"11\"))\n```\n\n\n## Testing ##\n\nThe EISCP library has been real world tested with an ESP32 microcontroller inside of the [ESP32 IR Remote Protocol](https://github.com/cbrand/esp32-ir-remote).\n\nIt communicates successfully to a [SX-S30DAB](https://intl.pioneer-audiovisual.com/products/2ch_components/sx-s30dab/).\n\n\n## License ##\n\nThe project has been published via the MIT license.\n","funding_links":[],"categories":["Libraries"],"sub_categories":["Communications"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcbrand%2Feiscp-micropython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcbrand%2Feiscp-micropython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcbrand%2Feiscp-micropython/lists"}