Arduino Project Soil Moisture Sensor With Arduino October 13, 2021February 5, 2022 by technolabcreationLeave a Comment on Soil Moisture Sensor With Arduino Components Required 1. Soil Moisture Sensor Module. 2.Arduino Board. (Nano,Uno,Mega Anyone) 4. 16×2 LCD Display. 5. Some Jumper Wires. 6. 10k Potentiometer. 7. Bread Board. Code Click here to download the code. #include <LiquidCrystal.h> const int rs = 7, en = 6, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); int j=0; int prev=0; int pres=0; void setup() { lcd.begin(16, 2); lcd.setCursor(0,0); lcd.print(" Soil Moisture "); Serial.begin(9600); } void loop() { j=analogRead(A0); j=map(j,0,982,148,0); pres=j; if(j>100) j=100; else if(j<0) j=0; lcd.setCursor(6,1); lcd.print(j); lcd.print("% "); Serial.println(j); prev=j; delay(500); } Video Tutorial. Post Views: 4,314 technolabcreation Website https://www.technolabcreation.com
Arduino Project Basic electronics GSM Project Request Sensor Data Using 4G LTE Modem & Arduino Uno | DHT22. May 14, 2024May 14, 2024Leave a Comment on Request Sensor Data Using 4G LTE Modem & Arduino Uno | DHT22.
Arduino Project ESP32 Projects Creating a Smart Home with Arduino: Exploring IoT Cloud and Arduino Nano ESP32. January 3, 2024January 4, 2024Leave a Comment on Creating a Smart Home with Arduino: Exploring IoT Cloud and Arduino Nano ESP32.
Arduino Project IOT Project Arduino IoT Cloud: Control Your Appliances with Web, Mobile, IR Remote, and Alexa! September 8, 2023September 8, 2023Leave a Comment on Arduino IoT Cloud: Control Your Appliances with Web, Mobile, IR Remote, and Alexa!