{"id":20989166,"url":"https://github.com/latchdevel/remotesensor","last_synced_at":"2026-04-24T15:33:16.032Z","repository":{"id":220549068,"uuid":"751929560","full_name":"latchdevel/RemoteSensor","owner":"latchdevel","description":"RemoteSensor library for Arduino to transmit and receive data from weather stations","archived":false,"fork":false,"pushed_at":"2024-07-03T16:32:53.000Z","size":329,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-31T00:39:58.065Z","etag":null,"topics":["433","433mhz","ask","cresta","hideki","honeywell","hygro","irox","mebus","ook","rain","rst","sensor","station","thermo","thermohygro","weather"],"latest_commit_sha":null,"homepage":"","language":"C++","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/latchdevel.png","metadata":{"files":{"readme":"README.TXT","changelog":null,"contributing":null,"funding":null,"license":"license.txt","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}},"created_at":"2024-02-02T16:29:26.000Z","updated_at":"2025-11-30T22:20:57.000Z","dependencies_parsed_at":"2024-11-19T06:40:25.366Z","dependency_job_id":null,"html_url":"https://github.com/latchdevel/RemoteSensor","commit_stats":null,"previous_names":["latchdevel/remotesensor"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/latchdevel/RemoteSensor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latchdevel%2FRemoteSensor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latchdevel%2FRemoteSensor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latchdevel%2FRemoteSensor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latchdevel%2FRemoteSensor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/latchdevel","download_url":"https://codeload.github.com/latchdevel/RemoteSensor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latchdevel%2FRemoteSensor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32228989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["433","433mhz","ask","cresta","hideki","honeywell","hygro","irox","mebus","ook","rain","rst","sensor","station","thermo","thermohygro","weather"],"created_at":"2024-11-19T06:24:00.595Z","updated_at":"2026-04-24T15:33:16.012Z","avatar_url":"https://github.com/latchdevel.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"RemoteSensor library for Arduino.\r\nMade by Randy Simons.\r\n\r\nThis library provides an easy class for Arduino, to send and receive signals\r\nused by some common weather stations using remote 433MHz sensors, like those\r\nmade by Cresta.\r\n\r\nCresta is just a brandname. The original OEM seems to be Hideki Electronics.\r\nThere are other brands which use the same hardware and / or protocol. As far\r\nas I know these include Mebus, Irox, Honeywell, Cresta and RST.\r\n\r\nThis software is based on the work of Oopsje. See docs/CrestaProtocol.pdf\r\n\r\nSee SensorTransmitter.h and SensorReciver.h for details!\r\n\r\nLicense: GPLv3. See ./RemoteSensor/license.txt\r\n\r\n\r\nInstallation of library:\r\n - Make sure Arduino is closed\r\n - Copy the directory RemoteSensor to the Arduino library directory (usually\r\n   \u003cSketchbook directory\u003e/libraries/)\r\n   See http://arduino.cc/en/Guide/Libraries for detailed instructions.\r\n \r\nDefault installation sender \u0026 demo:\r\n - Connect tha data-in-pin of a 433MHz transmitter to digital pin 11. See \r\n   docs/hardware setup.jpg.\r\n   (Note: your hardware may have a different pin configuration!)\r\n - Start Arduino, and open the example: File -\u003e Examples -\u003e RemoteSensor -\u003e\r\n   ThermoHygroTransmitter\r\n - Alter addresses/devices to reflect your own setup. Otherwise nothing will\r\n   happen.\r\n - Compile, upload and run!\r\n\r\nDefault installation receiver \u0026 demo:\r\n - Connect the data-out-pin of a 433MHz receiver to digital pin 2. See photo.\r\n  (Note: your hardware may have a different pin configuration!)\r\n - Start Arduino, and open the example: File -\u003e Examples -\u003e RemoteSensor -\u003e\r\n   ThermoHygroReceiver\r\n - Compile, upload and run\r\n - Open serial monitor in Arduino (115200 baud)\r\n - Wait for your 433MHz-sensor to transmit (less than 1 minute), and watch the\r\n   serial monitor\r\n\r\n\r\nChangelog:\r\nRemoteSensor library v1.0.3 (20240204) for Arduino\r\n - Fix SensorTransmitter::sendPackage\r\n - Add ThermoHygroTransmitter::sendRainlevel\r\n\r\nRemoteSensor library v1.0.2 (20130601) for Arduino 1.0\r\n - Reduced memory usage (Flash, RAM). Because of this, a small backwards\r\n   incompatibility is introduced: The last parameter of\r\n   SensorReceiver::decodeThermoHygro now is a byte instead of short.\r\n - Dropped support for Arduino pre-1.0\r\n\r\nRemoteSensor library v1.0.1 (20120213) for Arduino 0022/1.0\r\n - Ignore obviously too short or too long signals in SensorReceiver, for better\r\n   recognition rate.\r\n - Support for Arduino 1.0.\r\n\r\nRemoteSensor library v1.0.0 (20110919) for Arduino 0022\r\n - Initial version","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flatchdevel%2Fremotesensor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flatchdevel%2Fremotesensor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flatchdevel%2Fremotesensor/lists"}