{"id":49767726,"url":"https://github.com/tonyjurg/venta_protocol_v2_device","last_synced_at":"2026-05-11T11:08:20.648Z","repository":{"id":354609595,"uuid":"1224373794","full_name":"tonyjurg/venta_protocol_v2_device","owner":"tonyjurg","description":"Porting bobiboy/venta_protocol_v3_device to API v2","archived":false,"fork":false,"pushed_at":"2026-04-29T08:37:42.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-29T10:29:19.915Z","etag":null,"topics":["home-automation","humidifier","venta"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","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/tonyjurg.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-29T08:09:42.000Z","updated_at":"2026-04-29T08:37:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tonyjurg/venta_protocol_v2_device","commit_stats":null,"previous_names":["tonyjurg/venta_protocol_v2_device"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tonyjurg/venta_protocol_v2_device","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fventa_protocol_v2_device","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fventa_protocol_v2_device/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fventa_protocol_v2_device/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fventa_protocol_v2_device/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tonyjurg","download_url":"https://codeload.github.com/tonyjurg/venta_protocol_v2_device/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fventa_protocol_v2_device/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32892015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["home-automation","humidifier","venta"],"created_at":"2026-05-11T11:08:19.644Z","updated_at":"2026-05-11T11:08:20.631Z","avatar_url":"https://github.com/tonyjurg.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Python](https://img.shields.io/badge/Python-3.x-blue?logo=python)](https://www.python.org/)\n\n# venta_protocol_v2_device\n\nSmall Python library to control Venta Air Humidifiers and Washers that use Protocol Version 2 (i.e., the ones using the `/datastructure` endpoint).\n\nThis package intentionally mirrors the public API style of\n[`venta_protocol_v3_device`](https://github.com/bobiboy/venta_protocol_v3_device)\nso migration/addaptation effort is kept at a minimum.\n\n## Example usage (without `pip install`)\n\n```python\nimport sys\nsys.path.insert(0, \"../\")    # relative to notebook dir\nimport venta_protocol_v2_device\n```\n\n## Example usage (once `pip install` is functioning)\n\n```python\nfrom venta_protocol_v2_device import Venta_Protocol_v2_Device\n\nd = Venta_Protocol_v2_Device(\"192.168.178.87\")\nprint(d.getStatus())\nprint(d.toJSON())\n```\n\n\n## Notebook examples\n\nFor longer, guided examples in Jupyter notebooks, see [`examples/notebooks`](examples/notebooks/README.md):\n\n- Basic single-device control workflow.\n\n## Supported control methods\n\n- `setPower(bool)`\n- `setSleepMode(bool)`\n- `setAutomatic(bool)`\n- `setFanSpeed(int)`\n- `setTargetHum(int)`\n- `setLEDStripActive(bool)`\n- `setLEDStripMode(int)`\n- `setLEDStripColor(str)`\n- `setPowerMode(str)`\n- `runUpdate(str)`\n\n## Discovery\n\nBased on analyzing sniffed UDP packets, it looks like discovery as found in protocol version `3.0` is not supported for protocol version `2.0` devices. Hence it is not included in this package. Instead use the device IP address directly:\n\n```python\nfrom venta_protocol_v2_device import Venta_Protocol_v2_Device\n\nd = Venta_Protocol_v2_Device(\"192.168.178.87\")\n```\n\nIf you need stable addressing, configure a DHCP reservation for the Venta device in your router or access point.\n\n## Corrections and/or Additions\n\nPlease feel free to raise issues or create pull request for corrections and/or additions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftonyjurg%2Fventa_protocol_v2_device","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftonyjurg%2Fventa_protocol_v2_device","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftonyjurg%2Fventa_protocol_v2_device/lists"}