Sensors + display

Plant Monitor

A breadboard prototype that gathers light, temperature, and humidity readings and turns them into clear LCD feedback.

  • Arduino
  • SHT20
  • Photoresistor
  • LCD
Breadboard plant monitor displaying temperature and humidity readings on an LCD
Signal path

Read the environment, then make it visible.

LightAnalog photoresistor
AirTemperature + humidity
ArduinoRead and organize
LCDShow conditions
Prototype logic

Small loops, observable results.

01

Sample

Read the light sensor at a regular interval so changes can be observed.

02

Combine

Pair the light value with temperature and humidity measurements.

03

Display

Present the readings on the LCD instead of leaving them only in a serial log.

int photoPin = A0;

void loop() {
  int light = analogRead(photoPin);
  Serial.println(light);
  delay(1000);
}