Ks0123 keyestudio EASY plug LM35 Temperature Sensor Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
 
(9 intermediate revisions by the same user not shown)
Line 6: Line 6:
It is effective in the range between 0 degree Celsius and 100 degree Celsius. Sensitivity is 10mV per degree Celsius. <br>
It is effective in the range between 0 degree Celsius and 100 degree Celsius. Sensitivity is 10mV per degree Celsius. <br>
The output voltage is proportional to the temperature.<br>
The output voltage is proportional to the temperature.<br>
<span style="color: red">'''Note: ''' this module should be used together with EASY plug control board.<br>
This module should be used together with EASY plug control board.<br>
 
<span style=color:red> '''Special Note:''' <br>
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>
<br>


Line 24: Line 28:
Connect the EASY Plug LM35 temperature sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
Connect the EASY Plug LM35 temperature sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
<br>[[File:ks0123.jpg|500px|frameless|thumb]]<br>
<br>[[File:ks0123.jpg|500px|frameless|thumb]]<br>
==Upload the Code==
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 12.1.png|500px|frameless|thumb]]<br>
<br>
==What You Should See==
<br>[[File:ks0397 12-1.png|600px|frameless|thumb]]<br>
<br>
Done uploading the code, open the serial monitor and set the baud rate to 9600, you should see the analog temperature value. 
<br>[[File:ks0397 12-2.png|600px|frameless|thumb]]<br>
<br>
<br>
<br>


==Upload the Code==
==Extension Experiment 1==
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload.  
<br>
<pre>
<span style=color:brown> <big>'''Temperature Controlled Light'''</big> </span><br>
void setup()
 
{
Complete the above experiment, you can get the analog temp. value. Want to try some different experiments. <br>
Serial.begin(9600);//Set Baud Rate to 9600 bps
For instance, when the temperature reaches the setting value, turn on an LED. Let’s get started right now!<br>
}
 
void loop()
'''Hookup Guide'''<br>
{int val;
Connect the EASY Plug LM35 sensor and LED module to control board using RJ11 cables.
int dat;
<br>[[File:LM35 灯.jpg|500px|frameless|thumb]]<br>
val=analogRead(0);//Connect LM35 on Analog 0
<br>
dat=(500 * val) /1024;;
 
Serial.print("Temp:"); //Display the temperature on Serial monitor
'''Example Code'''<br>
Serial.print(dat);
Below is an example code. Open or drag below code to [https://wiki.keyestudio.com/Getting_Started_with_Mixly  Mixly Blocks] and upload. <br>
Serial.println("C");
<br>[[File:ks0397 12.2.png|600px|frameless|thumb]]<br>
delay(500);
 
}
<br>
</pre>
'''What You Should See'''<br>
Done uploading the code, when the temperature detected by LM35 sensor is greater than 19℃, external LED will be turned on.  
<br>[[File:ks0397 12-4.png|500px|frameless|thumb]]<br>
 
<br>
<span style="color: red">'''Little Knowledge:'''</span> <br>
As we all known, different regions might exists different climate. So if the setting temp. value is too low or too high, cannot turn on the LED, you can change the value in the code shown below. <br>
<br>[[File:ks0397 12-5.png|500px|frameless|thumb]]<br>
 
 
<br>
 
==Extension Experiment 2==  
 
<span style=color:brown> <big>'''Adding 4-digit LED Display'''</big></span> <br>
 
Next, how about adding a 4-digit LED display to show the temperature value. Let’s get started right now!
 
<br>
'''Hookup Guide'''<br>
Connect the EASY Plug LM35 sensor and 4-digit LED module to control board using RJ11 cables.  
<br>[[File:LM35 数码管.jpg|600px|frameless|thumb]]<br>
 
<br>
'''Example Code'''<br>
Below is an example code.<br>
<br>[[File:ks0397 12.3.png|600px|frameless|thumb]]<br>
 
<br>
<br>
'''What You Should See'''<br>
<br>[[File:ks0397 12-6.png|600px|frameless|thumb]]<br>
Upload success, you should be able to see the temperature value is showed on the 4-digit LED display.
<br>[[File:ks0397 12-7.png|600px|frameless|thumb]]<br>


==What You Should See==
<br>
Done uploading the code, open the serial monitor and set the baud rate to 9600, you should see the analog temperature value.
<br>[[File:ks0123 Result.gif|700px|frameless|thumb]]<br>


<br>
<br>


==Resources ==
==Resources ==
'''Download the PDF:'''<br>
 
https://drive.google.com/open?id=1QP4EWzSG3VAbFtpxmHhkULljfKR8jmuV
https://fs.keyestudio.com/KS0123




Line 60: Line 106:


==Buy from ==
==Buy from ==
'''Official Website'''<br>
*[https://www.keyestudio.com/newkeyestudio-easy-plug-lm35-temperature-sensor-module-for-arduino-steam-p0062-p0062.html  '''Official Website''' ]
http://www.keyestudio.com/keyestudio-easy-plug-lm35-temperature-sensor-module-for-arduino.html
 
*[https://www.aliexpress.com/store/product/New-Keyestudio-EASY-plug-LM35-Temperature-Sensor-module-for-Arduino/1452162_32642617587.html?spm=2114.12010612.8148356.15.360d4267C9zQMH  Shop on aliexpress ]




[[category:EASY Plug]]
[[category:EASY Plug]]

Latest revision as of 16:26, 7 January 2021

Keyestudio EASY plug LM35 Temperature Sensor

Introduction

It is based on semiconductor LM35 temperature sensor.
A temperature sensor is exactly what it sounds like - a sensor used to measure ambient temperature.
It is effective in the range between 0 degree Celsius and 100 degree Celsius. Sensitivity is 10mV per degree Celsius.
The output voltage is proportional to the temperature.
This module should be used together with EASY plug control board.

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
  • Power supply: 5V
  • Sensitivity: 10mV per degree Celsius
  • Function range: 0℃ to 100℃


Technical Details

  • Dimensions: 38mm*20mm*18mm
  • Weight: 4.6g


Connect It Up

Connect the EASY Plug LM35 temperature 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


thumb

Done uploading the code, open the serial monitor and set the baud rate to 9600, you should see the analog temperature value.
thumb


Extension Experiment 1


Temperature Controlled Light

Complete the above experiment, you can get the analog temp. value. Want to try some different experiments.
For instance, when the temperature reaches the setting value, turn on an LED. Let’s get started right now!

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

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

thumb


What You Should See
Done uploading the code, when the temperature detected by LM35 sensor is greater than 19℃, external LED will be turned on.
thumb


Little Knowledge:
As we all known, different regions might exists different climate. So if the setting temp. value is too low or too high, cannot turn on the LED, you can change the value in the code shown below.

thumb



Extension Experiment 2

Adding 4-digit LED Display

Next, how about adding a 4-digit LED display to show the temperature value. Let’s get started right now!


Hookup Guide
Connect the EASY Plug LM35 sensor and 4-digit LED module to control board using RJ11 cables.
thumb


Example Code
Below is an example code.

thumb


What You Should See

thumb

Upload success, you should be able to see the temperature value is showed on the 4-digit LED display.
thumb



Resources

https://fs.keyestudio.com/KS0123



Buy from