Steam_Sensor__SKU_SEN0121_-DFRobot

Introduction

This is a steam sensor from DFRobot. This steam sensor can be connected to the Arduino IO Expansion shield directly. The output voltage will increase when the humidity of the sensor surface goes up.

Applications

Simple rain detector Cheap steam level switch Touch sensor based on humidity

Warning: The connector is not waterproof, please be careful not to put the connector directly in water.

Specification

Connection Diagram

Stream_Sensor Connection Diagram

Sample Code

/*******************************
           Connection:
             VCC-5V
             GND-GND
             S-Analog pin 0

 You can put the sensor on your palm,
 it may sense the humidity of your palm
 ********************************/

void setup()
{
  Serial.begin(9600);// open serial port, set the baud rate to 9600 bps
}
void loop()
{
  int sensorValue;
  sensorValue = analogRead(0);   //connect Steam sensors to Analog 0
  Serial.println(sensorValue); //print the value to serial
  delay(200);
}

DFshopping_car1.png Get Gravity: Steam Sensor from DFRobot Store or DFRobot Distributor.

Turn to the Top