Ks0246 keyestudio EASY plug Steam Sensor: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[image:ks246图.jpg|thumb|600px|right|Keyestudio EASY plug Steam Sensor ]] | |||
==Introduction== | ==Introduction== | ||
Keyestudio steam sensor is an analog sensor and can make a simple rainwater detector and liquid level switch. When humidity on the surface of the sensor goes up, the output voltage will increase.<br> | |||
<span style="color: red">'''Warning: ''' The connector is not waterproof, please be careful not to put the connector directly in water. </span><br> | |||
<br> | The module can be connected to the analog input interface with only one line, which is very easy and convenient. | ||
<br> | |||
== | ==Features== | ||
* Working Voltage: | * Connector: Easy plug | ||
* Working Voltage: 5V | |||
* Working Current: <20mA | * Working Current: <20mA | ||
* | * Working Temperature: -10℃~+70℃ | ||
* Interface Type: Analog Signal Output | * Interface Type: Analog Signal Output | ||
== | <br> | ||
==Technical Details== | |||
* Dimensions: 35mm*24mm*18mm | |||
* Weight: 4.6g | |||
<br> | |||
==Connect It Up == | |||
Connect the EASY Plug steam sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable. | |||
<br>[[File:KS0246.jpg|500px|frameless|thumb]]<br> | |||
== | <br> | ||
==Upload the Code== | |||
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload. | |||
<pre> | <pre> | ||
void setup() | void setup() | ||
Line 30: | Line 38: | ||
val=analogRead(0); //plug vapor sensor into analog port 0 | val=analogRead(0); //plug vapor sensor into analog port 0 | ||
Serial.print("Moisture is "); | Serial.print("Moisture is "); | ||
Serial.println(val,DEC); //read analog value | Serial.println(val,DEC); //read analog value printed on serial port | ||
delay(100); | delay(100); | ||
} | } | ||
</pre> | </pre> | ||
<br> | |||
==What You Should See== | |||
== | When detect the different degree of humidity, the sensor outputs different value. If the sensor’s sensing area detects a water drop, the analog value will be displayed on monitor window. | ||
When | |||
<br>[[File:KS0246-3.png|500px|frameless|thumb]]<br> | <br>[[File:KS0246-3.png|500px|frameless|thumb]]<br> | ||
<br> | |||
==Resources == | ==Resources == | ||
'''PDF'''<br> | |||
'''PDF''' | |||
https://drive.google.com/open?id=1XnoZiAUFd7R9szdJAM8j47OxiaaaGnWy | https://drive.google.com/open?id=1XnoZiAUFd7R9szdJAM8j47OxiaaaGnWy | ||
<br> | |||
==Buy from == | ==Buy from == | ||
'''Official Website''' | '''Official Website'''<br> | ||
http://www.keyestudio.com/easy-plug-steam-sensor.html | |||
[[Category:EASY Plug]] | [[Category:EASY Plug]] |
Revision as of 13:24, 16 November 2018
Introduction
Keyestudio steam sensor is an analog sensor and can make a simple rainwater detector and liquid level switch. When humidity on the surface of the sensor goes up, the output voltage will increase.
Warning: The connector is not waterproof, please be careful not to put the connector directly in water.
The module can be connected to the analog input interface with only one line, which is very easy and convenient.
Features
- Connector: Easy plug
- Working Voltage: 5V
- Working Current: <20mA
- Working Temperature: -10℃~+70℃
- Interface Type: Analog Signal Output
Technical Details
- Dimensions: 35mm*24mm*18mm
- Weight: 4.6g
Connect It Up
Connect the EASY Plug steam sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
Upload the Code
Copy and paste below code to Arduino IDE and upload.
void setup() { Serial.begin(9600); //open serial port, and set baud rate at 9600bps } void loop() { int val; val=analogRead(0); //plug vapor sensor into analog port 0 Serial.print("Moisture is "); Serial.println(val,DEC); //read analog value printed on serial port delay(100); }
What You Should See
When detect the different degree of humidity, the sensor outputs different value. If the sensor’s sensing area detects a water drop, the analog value will be displayed on monitor window.
Resources
PDF
https://drive.google.com/open?id=1XnoZiAUFd7R9szdJAM8j47OxiaaaGnWy
Buy from
Official Website
http://www.keyestudio.com/easy-plug-steam-sensor.html