Ks0246 keyestudio EASY plug Steam Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
==EASY plug Steam Sensor ==
[[image:Ks0246图.jpg|thumb|600px|right|Keyestudio EASY plug Steam Sensor ]]
<br>[[File:KS0246-1.png|500px|frameless|thumb]]<br>


==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>
The module can be connected to the analog input interface with only one line, which is very easy and convenient.


==Introduction==
EASY plug Steam Sensor needs to be used with the EASY plug Control board V2.0control board.The module is connected to the analog input interface with only one line, which is very easy and convenient. Vapor Sensor is an analog sensor and can make a simple rainwater detector and liquid level switch. When humidity on the face of this sensor rises, output voltage will increase.<br>
Caution: connection parts is non-waterproof, so please don’t put them into water. <br>
<br>[[File:KS0246 (3).jpg|500px|frameless|thumb]]<br>


==Specification==
<span style=color:red> '''Special Note:''' <br>
* Working Voltage: 5V
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface. <br> If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module. </span><br>
<br>
 
==Features==
* Connector: Easy plug
* Working Voltage: 5V
* Working Current: <20mA
* Working Current: <20mA
* Range of Working Temperature: -10℃~+70℃
* Working Temperature: -10℃~+70℃
* Interface Type: Analog Signal Output
* Interface Type: Analog Signal Output
* Weight:4.4g


==Connection Diagram ==
<br>
<br>[[File:KS0246-2.png|500px|frameless|thumb]]<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>


==Sample Code==
<br>
<pre>
==Upload the Code==
void setup()
Below is an example code. Open or drag below code to [https://wiki.keyestudio.com/Getting_Started_with_Mixly  Mixly Blocks] and upload. <br>
{
<br>[[File:ks0397 16.1.png|500px|frameless|thumb]]<br>
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 through serial port printed
delay(100);
}
</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.
<br>[[File:ks0397 16-1.png|500px|frameless|thumb]]<br>
<br>[[File:ks0397 16-2.png|500px|frameless|thumb]]<br>


==Result==
<br>
When you detect different degree of humidity, the sensor reacts current value. Shown as following picture, the value is displayed on serial port when the sensor detects the steam rose from boiled water.
==Extension Experiment==
<br>[[File:KS0246-3.png|500px|frameless|thumb]]<br>
<br>
<span style=color:brown><big>'''Adding LCD Display'''</big></span><br>
<br>
'''Hookup Guide'''<br>
Connect the EASY Plug steam sensor and LCD module to control board using RJ11 cables.  
<br>[[File:KS0246---0.png|500px|frameless|thumb]]<br>


<br>
'''Test Code'''<br>
Below is an example code. Open or drag below code to [https://wiki.keyestudio.com/Getting_Started_with_Mixly  Mixly Blocks] and upload. <br>
<br>[[File:ks0397 16.2.png|500px|frameless|thumb]]<br>
<br>
'''What You Should See'''<br>
<br>[[File:ks0397 16-3.png|500px|frameless|thumb]]<br>
Upload the code successfully, if the sensor detects a drop of water, the data will be showed on the LCD screen.
<br>[[File:ks0397 16-4.png|500px|frameless|thumb]]<br>
<br>
<span style="color: red">'''Little Knowledge:'''</span> <br>
* Remember you can adjust the contrast by rotating a blue potentiometer on the LCD back if you can’t make out the words clearly.
<br>[[File:ks0397 14-6.png|500px|frameless|thumb]]<br>
<br>
<br>


==Resources ==
==Resources ==


'''PDF'''
https://fs.keyestudio.com/KS0246
 


https://drive.google.com/open?id=1XnoZiAUFd7R9szdJAM8j47OxiaaaGnWy
<br>


==Buy from ==
==Buy from ==
'''Official Website'''
*[https://www.keyestudio.com/keyestudio-easy-plug-steam-sensor-module-for-arduino-steam-p0075-p0075.html    '''Official Website''']
 
*[https://www.aliexpress.com/store/product/Keyestudio-EASY-plug-Steam-Sensor-module-for-arduino/1452162_32820572238.html?spm=2114.12010612.8148356.47.528d24eaRHbAow    Shop on aliexpress ]


http://www.keyestudio.com/easy-plug-steam-sensor.html


[[Category:Sensor]]
[[Category:EASY Plug]]

Latest revision as of 08:42, 8 January 2021

Keyestudio EASY plug Steam Sensor

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.


Special Note:
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface.
If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module.


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.
thumb


Upload the Code

Below is an example code. Open or drag below code to Mixly Blocks and upload.

thumb


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.
thumb

thumb


Extension Experiment


Adding LCD Display

Hookup Guide
Connect the EASY Plug steam sensor and LCD module to control board using RJ11 cables.
thumb


Test Code
Below is an example code. Open or drag below code to Mixly Blocks and upload.

thumb


What You Should See

thumb
Upload the code successfully, if the sensor detects a drop of water, the data will be showed on the LCD screen.
thumb


Little Knowledge:

  • Remember you can adjust the contrast by rotating a blue potentiometer on the LCD back if you can’t make out the words clearly.


thumb



Resources

https://fs.keyestudio.com/KS0246



Buy from