Smart Pot

Smart Pot

pinshape

Our project is a cutting-edge pot that provides us with real-time humidity and temperature readings, enabling our plants to thrive in perfect conditions. For this, we've combined the power of programming and 3D design expertise. We use an Arduino UNO Board paired with two sensors connected to a computer to monitor and display various environmental factors. This setup is incredibly useful as it allows us to precisely determine when to water our plants and whether the air temperature is ideal for them at any given moment. Materials: -Arduino UNO Board -Octopus DS18B20 Sensor (for temperature measurement) -HL-69 Sensor (for humidity detection) -Box designed using SketchUp to house the Arduino Board -Plant pot Arduino Code: int Valor; #include <OneWire.h> #include <DallasTemperature.h> #define ONE_WIRE_BUS 10 OneWire ourWire(ONE_WIRE_BUS); DallasTemperature sensors(&ourWire); void setup() { delay(1000); Serial.begin(9600); delay(1000); sensors.begin(); } void loop() { Serial.print("Humidity Sensor Value:"); Valor = analogRead(0); Serial.print(Valor); if (Valor <= 300) Serial.println("Watered"); if ((Valor > 300) and (Valor <= 700)) Serial.println("Moist, do not water"); if (Valor > 700) Serial.println("Dry, needs watering"); delay(1000); Serial.println(); sensors.requestTemperatures(); Serial.print(sensors.getTempCByIndex(0)); Serial.println("Degrees C"); Serial.print(sensors.getTempFByIndex(0)); Serial.println("Degrees F"); delay(5000); } Temperature Sensor Connections: S-----10 V-----5V G-----GND Humidity Sensor Connections: A0-----A0 GND-----GND VCC-----IOREF positive-----HL negative-----69

Download Model from pinshape

With this file you will be able to print Smart Pot with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Smart Pot.