Top Sensors Every Arduino Beginner Should Know

A sensor is how your project senses the real world — distance, temperature, motion, light. Master a handful and you can build almost anything. Here are the essentials every beginner should know.

The starter line-up

  • Ultrasonic (HC-SR04) — measures distance. First project: an obstacle-avoiding robot or a parking sensor.
  • DHT11 / DHT22 — temperature & humidity. First project: a room climate monitor.
  • PIR motion sensor — detects movement. First project: a motion-activated light or alarm.
  • LDR (photoresistor) — senses light. First project: an automatic night light.
  • IR sensor — detects obstacles or follows lines. First project: a line-following robot.
  • Soil moisture sensor — how wet the soil is. First project: an automatic plant waterer.

How sensors connect

Most beginner sensors are 3-pin (power, ground, signal) and read with a single line of code. Analog sensors (like the LDR) give a range of values; digital ones give on/off. Either way, you wire them on a breadboard and read them on a pin.

The fastest way to learn

Rather than buying sensors one at a time, a starter kit gives you a dozen sensors plus the board, breadboard, and a guide — so you can try them all in a weekend. Browse individual modules in Sensors.

Building something specific and not sure which sensor you need? Ask VoltIQ — describe the project and it'll tell you the sensor and how to wire it.

Back to blog