{"id":22807940,"url":"https://github.com/z1xus/dht22-webui","last_synced_at":"2026-05-06T20:35:07.575Z","repository":{"id":266702825,"uuid":"899094392","full_name":"Z1xus/dht22-webui","owner":"Z1xus","description":"A simple and lightweight web-interface for monitoring temperature and humidity from your DHT22 sensor.","archived":false,"fork":false,"pushed_at":"2025-01-01T02:35:38.000Z","size":320,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T20:51:54.800Z","etag":null,"topics":["dark-mode","dht22","flask","lightweight","mongodb","raspberry-pi","rpi","sensor","smarthome","temperature","webui"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/Z1xus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"ko_fi":"z1xus"}},"created_at":"2024-12-05T15:58:50.000Z","updated_at":"2024-12-08T01:24:59.000Z","dependencies_parsed_at":"2024-12-05T17:19:10.785Z","dependency_job_id":"bfe13dcc-7507-457d-a671-63e475363536","html_url":"https://github.com/Z1xus/dht22-webui","commit_stats":null,"previous_names":["z1xus/dht22-webui"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z1xus%2Fdht22-webui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z1xus%2Fdht22-webui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z1xus%2Fdht22-webui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z1xus%2Fdht22-webui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Z1xus","download_url":"https://codeload.github.com/Z1xus/dht22-webui/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246379385,"owners_count":20767696,"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":["dark-mode","dht22","flask","lightweight","mongodb","raspberry-pi","rpi","sensor","smarthome","temperature","webui"],"created_at":"2024-12-12T11:07:17.012Z","updated_at":"2026-05-06T20:35:07.547Z","avatar_url":"https://github.com/Z1xus.png","language":"HTML","funding_links":["https://ko-fi.com/z1xus"],"categories":[],"sub_categories":[],"readme":"# dht22-webui\n\nA lightweight Flask-based web interface for monitoring DHT22 temperature and humidity sensor data with real-time updates and historical data visualization.\n\n\u003cp align=\"center\"\u003e\n  \u003cpicture\u003e\n    \u003csource srcset=\"preview_info.webp\"\u003e\n    \u003cimg alt=\"preview\"\u003e\n  \u003c/picture\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cpicture\u003e\n    \u003csource srcset=\"preview_history.webp\"\u003e\n    \u003cimg alt=\"preview\"\u003e\n  \u003c/picture\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/astral-sh/ruff\"\u003e\n        \u003cimg src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json\" alt=\"Ruff\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/Z1xus/dht22-webui/issues?q=is%3Aissue+is%3Aopen+\" alt=\"GitHub issues\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/issues/z1xus/dht22-webui\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/Z1xus/dht22-webui/pulls?q=is%3Apr+is%3Aopen+\" alt=\"GitHub pull requests\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/issues-pr/z1xus/dht22-webui\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n### Features\n- Real-time temperature and humidity monitoring\n- Historical data visualization with interactive charts\n- Multiple timeframe views (1h, 24h, 7d, 30d)\n- Temperature unit conversion (°C/°F)\n- Time format selection (12h/24h)\n- MongoDB integration for data storage\n\n### Requirements\n- Raspberry Pi\n- DHT22 temperature and humidity sensor\n- Python 3.12+\n- MongoDB database\n\n### Installation\n1. Clone the repository\n```bash\ngit clone https://github.com/z1xus/dht22-webui\ncd dht22-webui\n```\n2. Install dependencies\n```bash\npip install -r requirements.txt\n```\n3. Configure your .env file\n```bash\nMONGO_URI=mongodb+srv://\u003cusername\u003e:\u003cpassword\u003e@\u003ccluster\u003e.mongodb.net/\u003cdatabase\u003e?retryWrites=true\u0026w=majority\n\nMONGO_DB_NAME=humidity_db\nMONGO_COLLECTION_NAME=sensor_readings\n\nDATA_COLLECTION_INTERVAL=60\n```\n4. Run the server\n```bash\npython main.py\n```\n\n### Usage\n1. Connect your DHT22 sensor to your Raspberry Pi (default: GPIO4)\n2. Start the application\n3. Access the web interface at:\n   - Local: http://localhost:5000\n   - Network: http://\u003cyour_pi_ip\u003e:5000\n\n### License\nThis project is licensed under the GPL-3.0 License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz1xus%2Fdht22-webui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz1xus%2Fdht22-webui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz1xus%2Fdht22-webui/lists"}