{"id":51248894,"url":"https://github.com/cubinet-code/eufylife_ble","last_synced_at":"2026-06-29T06:02:48.446Z","repository":{"id":339750471,"uuid":"1163237253","full_name":"cubinet-code/eufylife_ble","owner":"cubinet-code","description":"Home Assistant custom component for EufyLife BLE scales — adds impedance and heart rate support for the Smart Scale P3 (T9150)","archived":false,"fork":false,"pushed_at":"2026-02-21T10:16:59.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-21T16:52:00.060Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cubinet-code.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-02-21T10:09:31.000Z","updated_at":"2026-02-21T10:17:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cubinet-code/eufylife_ble","commit_stats":null,"previous_names":["cubinet-code/eufylife_ble"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/cubinet-code/eufylife_ble","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubinet-code%2Feufylife_ble","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubinet-code%2Feufylife_ble/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubinet-code%2Feufylife_ble/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubinet-code%2Feufylife_ble/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cubinet-code","download_url":"https://codeload.github.com/cubinet-code/eufylife_ble/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubinet-code%2Feufylife_ble/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34915002,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"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":[],"created_at":"2026-06-29T06:02:47.626Z","updated_at":"2026-06-29T06:02:48.438Z","avatar_url":"https://github.com/cubinet-code.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EufyLife BLE Custom Component for Home Assistant\n\nCustom component for [Home Assistant](https://www.home-assistant.io/) that extends the built-in EufyLife BLE integration with **impedance** and **heart rate** support for the Smart Scale P3 (T9150).\n\n![Smart Scale P3 in Home Assistant](screenshot.png)\n\n## Features\n\n| Sensor | Models | Description |\n| ------ | ------ | ----------- |\n| Weight | All | Real-time and final weight in kg/lbs |\n| Heart Rate | T9149, T9150 | Heart rate in bpm (new for T9150) |\n| Impedance | T9150 | Body impedance in Ohms |\n\nThe impedance value is the raw bioelectrical impedance measurement from the scale's electrodes. The Eufy app uses this value together with your height, age, and gender to calculate body composition metrics (body fat %, muscle mass, BMI, etc.).\n\n## Installation\n\n### Manual\n\n1. Copy the `eufylife_ble` folder into your Home Assistant `custom_components` directory:\n   ```\n   custom_components/\n   └── eufylife_ble/\n       ├── __init__.py\n       ├── config_flow.py\n       ├── const.py\n       ├── icons.json\n       ├── manifest.json\n       ├── models.py\n       ├── sensor.py\n       ├── strings.json\n       └── translations/\n           └── en.json\n   ```\n\n2. Install the forked library (via SSH/Terminal add-on):\n   ```bash\n   pip install git+https://github.com/cubinet-code/eufylife-ble-client@main\n   ```\n\n3. Restart Home Assistant.\n\n### Setup\n\nAfter restarting, the integration should automatically discover your scale when you step on it. If you already have the built-in EufyLife BLE integration configured, the custom component will override it and the new sensors (heart rate, impedance) will appear automatically.\n\n## How it works\n\nThe T9150 sends all measurement data via BLE advertisements (no GATT connection needed). The advertisement data (23 bytes, company ID `0xCF64`) contains:\n\n- **Weight**: bytes 12-13 (uint16 LE / 100, in kg)\n- **Heart rate**: byte 15 (uint8, in bpm) — present in the final packet\n- **Impedance**: bytes 17-18 (uint16 LE / 10, in Ohms) — present after body composition measurement\n\n## Related\n\n- Library fork: [cubinet-code/eufylife-ble-client](https://github.com/cubinet-code/eufylife-ble-client)\n- Upstream library PR: [bdr99/eufylife-ble-client#11](https://github.com/bdr99/eufylife-ble-client/pull/11)\n- P3 support issue: [bdr99/eufylife-ble-client#3](https://github.com/bdr99/eufylife-ble-client/issues/3)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcubinet-code%2Feufylife_ble","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcubinet-code%2Feufylife_ble","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcubinet-code%2Feufylife_ble/lists"}