{"id":25805732,"url":"https://github.com/matesoft2033/temperature-and-soil-moisture-sensor","last_synced_at":"2026-05-13T11:32:11.099Z","repository":{"id":273613578,"uuid":"920302637","full_name":"matesoft2033/TEMPERATURE-AND-SOIL-MOISTURE-SENSOR","owner":"matesoft2033","description":"The Humidity and Temperature Monitoring System is an Arduino project that measures and displays humidity and temperature levels in real-time. It uses LEDs to indicate environmental conditions, making it a great tool for learning about sensors and data visualization.","archived":false,"fork":false,"pushed_at":"2025-02-08T19:47:56.000Z","size":157,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T02:20:15.684Z","etag":null,"topics":["arduino","data-visualization","electronics-engineering","enviromental-sciences","sensor-technology","troubleshooting-and-debugging"],"latest_commit_sha":null,"homepage":"https://www.tinkercad.com/things/iUblFcSR6rH-temperature-and-soil-moisture-sensor?sharecode=v0Y6U3na1TdSHnXSIKlsWG9TCytrHGhVhZWzO58i368","language":"C++","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/matesoft2033.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}},"created_at":"2025-01-21T23:00:46.000Z","updated_at":"2025-02-08T19:54:30.000Z","dependencies_parsed_at":"2025-01-22T00:18:49.928Z","dependency_job_id":"58b0ce8b-04ad-4251-be5a-2768218b7c19","html_url":"https://github.com/matesoft2033/TEMPERATURE-AND-SOIL-MOISTURE-SENSOR","commit_stats":null,"previous_names":["matesoft2033/temperature-and-soil-moisture-sensor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matesoft2033/TEMPERATURE-AND-SOIL-MOISTURE-SENSOR","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matesoft2033%2FTEMPERATURE-AND-SOIL-MOISTURE-SENSOR","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matesoft2033%2FTEMPERATURE-AND-SOIL-MOISTURE-SENSOR/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matesoft2033%2FTEMPERATURE-AND-SOIL-MOISTURE-SENSOR/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matesoft2033%2FTEMPERATURE-AND-SOIL-MOISTURE-SENSOR/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matesoft2033","download_url":"https://codeload.github.com/matesoft2033/TEMPERATURE-AND-SOIL-MOISTURE-SENSOR/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matesoft2033%2FTEMPERATURE-AND-SOIL-MOISTURE-SENSOR/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32980686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T06:31:55.726Z","status":"ssl_error","status_checked_at":"2026-05-13T06:31:51.336Z","response_time":115,"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":["arduino","data-visualization","electronics-engineering","enviromental-sciences","sensor-technology","troubleshooting-and-debugging"],"created_at":"2025-02-27T19:39:25.675Z","updated_at":"2026-05-13T11:32:11.065Z","avatar_url":"https://github.com/matesoft2033.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌡️ Humidity and Temperature Monitoring System  \n\nThis project is an **Arduino-based humidity and temperature monitoring system** that uses **LED indicators** to display current conditions. The system reads values from analog sensors and provides real-time feedback through visual alerts.\n\n## 📸 Circuit Diagram  \nHere’s the circuit setup for this project:  \n\n![Circuit Diagram](circuit_image.png)\n\n## 🔧 Features  \n✅ **Real-time monitoring** of humidity and temperature  \n✅ **LED indicators** to display different humidity and temperature ranges  \n✅ Easy to customize and expand for additional features  \n\n## 🛠 Components Used  \n- **Arduino Board** (Uno/Nano)  \n- **Red LEDs** (5)  \n- **Blue LEDs** (5)  \n- **Humidity Sensor** (e.g., DHT11/DHT22)  \n- **Temperature Sensor** (e.g., LM35 or similar)  \n- **Resistors \u0026 jumper wires**  \n\n## 🚀 How It Works  \n1. **Connect the Circuit**: Follow the diagram above.  \n2. **Upload the Code**: Load `temperature-and-soil-sensors.ino` to your Arduino.  \n3. **Power On**: The system will read humidity and temperature values and display them via the LEDs.  \n\n## 📜 Code  \n```cpp\n// RED LEDS\n#define RED1 2\n#define RED2 3\n#define RED3 4\n#define RED4 5\n#define RED5 6\n\n// BLUE LEDS\n#define BLUE1 8\n#define BLUE2 9\n#define BLUE3 10 \n#define BLUE4 11\n#define BLUE5 12\n\n// Ranges\n#define RANGE1 20\n#define RANGE2 40\n#define RANGE3 60\n#define RANGE4 80\n#define RANGE5 100\n\n#define MAX_ANALOG 876\n#define DEFAULT 0\n#define MAX_PERCENTAGE 100\n#define MAX_ANALOG1 358\n#define LOW_ANALOG1 20\n#define MAX_DEGREE 125\n#define LOW_DEGREE -40\n\n// Delay\n#define TIME 800\n\n// Variables\nfloat temp;\nint humidity;\nfloat analog_value;\nfloat analog_value1;\n\nvoid setup() {\n  Serial.begin(9600);\n  \n  for (int red = 2; red \u003c= 6; red++) {\n    pinMode(red, OUTPUT);\n  }\n  \n  for (int blue = 8; blue \u003c= 12; blue++) {\n    pinMode(blue, OUTPUT);\n  }\n}\n\nfloat map(float x, float in_min, float in_max, float out_min, float out_max) {\n  return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;\n}\n\nvoid loop() {\n  // Process Of Checking Humidity\n  analog_value = analogRead(A0);\n  humidity = map(analog_value, DEFAULT, MAX_ANALOG, DEFAULT, MAX_PERCENTAGE);\n  \n  Serial.print(\"Now Humidity is: \");\n  Serial.print(humidity);\n  Serial.println(\"%\");\n  delay(TIME);\n\n  // LED logic for humidity\n  if (humidity \u003c= RANGE1) {\n    digitalWrite(BLUE1, HIGH);\n    digitalWrite(BLUE2, LOW);\n    digitalWrite(BLUE3, LOW);\n    digitalWrite(BLUE4, LOW);\n    digitalWrite(BLUE5, LOW);\n  }\n  // Additional humidity conditions...\n\n  // Process Of Checking Temperature\n  analog_value1 = analogRead(A1);\n  temp = map(analog_value1, LOW_ANALOG1, MAX_ANALOG1, LOW_DEGREE, MAX_DEGREE);\n  \n  Serial.print(\"Now Temperature is: \");\n  Serial.print(temp);\n  Serial.println(\"C\");\n  delay(TIME);\n\n  // LED logic for temperature\n  if (temp \u003c= RANGE1) {\n    digitalWrite(RED1, HIGH);\n    digitalWrite(RED2, LOW);\n    digitalWrite(RED3, LOW);\n    digitalWrite(RED4, LOW);\n    digitalWrite(RED5, LOW);\n  }\n  // Additional temperature conditions...\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatesoft2033%2Ftemperature-and-soil-moisture-sensor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatesoft2033%2Ftemperature-and-soil-moisture-sensor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatesoft2033%2Ftemperature-and-soil-moisture-sensor/lists"}