{"id":21469506,"url":"https://github.com/ztepsic/jarvis","last_synced_at":"2026-04-20T05:34:51.233Z","repository":{"id":145324985,"uuid":"75879124","full_name":"ztepsic/jarvis","owner":"ztepsic","description":"Temperature and humidity measuring (Raspberry Pi, ESP8266)","archived":false,"fork":false,"pushed_at":"2025-01-02T20:45:44.000Z","size":58,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T06:35:55.889Z","etag":null,"topics":["arduino","python","raspberry-pi"],"latest_commit_sha":null,"homepage":"","language":"TSQL","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/ztepsic.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}},"created_at":"2016-12-07T21:57:15.000Z","updated_at":"2025-01-02T20:45:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"8b2ee890-2f9f-4102-b142-7ce31f471180","html_url":"https://github.com/ztepsic/jarvis","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ztepsic/jarvis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztepsic%2Fjarvis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztepsic%2Fjarvis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztepsic%2Fjarvis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztepsic%2Fjarvis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ztepsic","download_url":"https://codeload.github.com/ztepsic/jarvis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztepsic%2Fjarvis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32034769,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["arduino","python","raspberry-pi"],"created_at":"2024-11-23T09:16:32.832Z","updated_at":"2026-04-20T05:34:51.217Z","avatar_url":"https://github.com/ztepsic.png","language":"TSQL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jarvis\nHome automation system\n\n## Raspberry Pi\n\n### Jarvis.SensorClient\n\n**Jarvis.SensorClient** is console app that reads data from attached sensors on Raspberry Pi.\n\n#### Configuration file\nIn root of application folder (e.g Jarvis.SensorClient) there is `config.json` file.\n\n\n#### Commands\n\nTo get current sensor readings use this command:\n\n    python run_sensorclient.py cur\n    \nValues will be displayed in standard output as:\n\n    \u003e temperature = 21\n    \u003e humidity = 45\n\n    \nTo get current sensor readings in JSON format use this command:  \n\n    python run_sensorclient.py cur json\n    \nValues will be displayed in standard output in JSON format as:\n\n```json\n[\n    {\n        \"device_ext_id\": \"device\",\n        \"device_id\": 1,\n        \"host\": \"host\",\n        \"location\": \"living room\",\n        \"sensor_id\": 2,\n        \"sensor_serial_no\": \"SERIAL_NO\",\n        \"timestamp\": \"2020-01-12T11:30:56.498990\",\n        \"unix_timestamp\": 1578825056,\n        \"value\": 21.6,\n        \"value_type\": \"temperature\",\n        \"value_type_id\": 1\n    },\n    {\n        \"device_ext_id\": \"device\",\n        \"device_id\": 1,\n        \"host\": \"host\",\n        \"location\": \"living room\",\n        \"sensor_id\": 2,\n        \"sensor_serial_no\": \"SERIAL_NO\",\n        \"timestamp\": \"2020-01-12T11:30:56.498990\",\n        \"unix_timestamp\": 1578825056,\n        \"value\": 45,\n        \"value_type\": \"humidity\",\n        \"value_type_id\": 2\n    }\n]\n```\n\nTo get current sensor readings and send it to Jarvis.Svc web service use this command:\n\n    python run_sensorclient.py\n\n---\n\n### Jarvis.Svc\n**Jarvis.Svc** is web service on Raspberry Pi that accepts sensor readings.\n\n#### Configuration file\nIn root of application folder (e.g Jarvis.Svc) create `instance` folder and in that folder create file `app.cfg` with the following structure:\n\n    SENSOR_READ_CMD = \"python /home/pi/jarvis/Jarvis.SensorClient/run_sensorclient.py cur json\"\n    INFLUXDB_TOKEN = \"value\"\n    INFLUXDB_ORGANIZATION = \"value\"\n    INFLUXDB_BUCKET = \"value\"\n\nApplication is started with:\n\n    python runserver.py\n\n---\n\n## ESP8266 Arduino\n### Jarvis.SensorClient\n\n**Jarvis.SensorClient** is console app that reads data from attached sensors on ESO8266 Arduino\n\n#### Configuration file\n`config.json` file is used to define configuration.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztepsic%2Fjarvis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fztepsic%2Fjarvis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztepsic%2Fjarvis/lists"}