{"id":16191907,"url":"https://github.com/fphammerle/wireless-sensor","last_synced_at":"2025-06-27T03:10:23.159Z","repository":{"id":37083318,"uuid":"319298583","full_name":"fphammerle/wireless-sensor","owner":"fphammerle","description":"Command-line tool \u0026 python library to receive \u0026 decode signals of FT017TH wireless thermo/hygrometers 🌡","archived":false,"fork":false,"pushed_at":"2025-06-20T09:02:58.000Z","size":497,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-22T10:51:30.535Z","etag":null,"topics":["home-automation","humidity","raspberry-pi","sensor","temperature","wireless-sensor"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/wireless-sensor/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fphammerle.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"COPYING","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}},"created_at":"2020-12-07T11:29:13.000Z","updated_at":"2025-06-13T20:00:03.000Z","dependencies_parsed_at":"2022-08-18T21:21:27.722Z","dependency_job_id":"2bdbf8da-619b-4f51-89c3-014600e8138f","html_url":"https://github.com/fphammerle/wireless-sensor","commit_stats":{"total_commits":124,"total_committers":2,"mean_commits":62.0,"dds":0.467741935483871,"last_synced_commit":"2c103797d7f52bd33076956b5853c4905e69fcf2"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/fphammerle/wireless-sensor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fphammerle%2Fwireless-sensor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fphammerle%2Fwireless-sensor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fphammerle%2Fwireless-sensor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fphammerle%2Fwireless-sensor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fphammerle","download_url":"https://codeload.github.com/fphammerle/wireless-sensor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fphammerle%2Fwireless-sensor/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262181059,"owners_count":23271319,"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":["home-automation","humidity","raspberry-pi","sensor","temperature","wireless-sensor"],"created_at":"2024-10-10T08:07:42.861Z","updated_at":"2025-06-27T03:10:23.126Z","avatar_url":"https://github.com/fphammerle.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wireless-sensor 🌡\n\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![CI Pipeline Status](https://github.com/fphammerle/wireless-sensor/workflows/tests/badge.svg)](https://github.com/fphammerle/wireless-sensor/actions)\n![Coverage Status](https://ipfs.io/ipfs/QmP8k5H4MkfspFxQxdL2kEZ4QQWQjF8xwPYD35KvNH4CA6/20230429T090002+0200/s3.amazonaws.com/assets.coveralls.io/badges/coveralls_100.svg)\n[![Last Release](https://img.shields.io/pypi/v/wireless-sensor.svg)](https://pypi.org/project/wireless-sensor/#history)\n[![Compatible Python Versions](https://img.shields.io/pypi/pyversions/wireless-sensor.svg)](https://pypi.org/project/wireless-sensor/)\n[![DOI](https://zenodo.org/badge/319298583.svg)](https://zenodo.org/badge/latestdoi/319298583)\n\nCommand-line tool \u0026 python library to receive \u0026 decode signals of FT017TH wireless thermo/hygrometers\n\n## Requirements\n\n* [FT017TH](https://github.com/fphammerle/FT017TH-wireless-thermometer-hygrometer-signal#product-details) sensor\n* [CC1101 transceiver](https://www.ti.com/product/CC1101)\n* Linux machine with CC1101 connected to SPI port \u0026 `GDO0` connected to some GPIO pin\n  ([wiring instructions](https://github.com/fphammerle/python-cc1101#wiring-raspberry-pi)\n  for raspberry pi)\n\n## Setup\n\n```sh\n$ pip3 install --user --upgrade wireless-sensor\n```\n\n## Usage\n\n### Command-line\n\n```sh\n$ wireless-sensor-receive\n2020-12-07T10:40:16+0100 23.9°C 46.9%\n2020-12-07T10:41:04+0100 23.9°C 46.9%\n2020-12-07T10:42:01+0100 23.8°C 47.0%\n```\n\n### Python Library\n\n```python\nimport asyncio\n\nimport wireless_sensor\n\nasync def _main():\n    sensor = wireless_sensor.FT017TH(gdo0_gpio_line_name=b'GPIO24')\n    async for measurement in sensor.receive(timeout_seconds=600):\n        print(\n            measurement.decoding_timestamp,\n            measurement.temperature_degrees_celsius,\n            measurement.relative_humidity,\n        )\n\nasyncio.run(_main())\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffphammerle%2Fwireless-sensor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffphammerle%2Fwireless-sensor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffphammerle%2Fwireless-sensor/lists"}