Ks0033 keyestudio Analog Temperature Sensor: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<br> | |||
==Introduction== | ==Introduction== | ||
This module is based on the working principle of a thermistor (resistance varies | This module is based on the working principle of a thermistor (resistance varies with temperature change in the environment). <br> | ||
All we need to do is to convert the sensor output data into degrees Celsius temperature | It can sense temperature change in its surrounding and send the data to the analog IO in the Arduino board. <br> | ||
All we need to do is to convert the sensor output data into degrees Celsius temperature via simple programming, finally to display it. <br> | |||
It's both convenient and effective, thus it is widely applied in gardening, home alarm system and other devices. | |||
<br>[[File:Ks0033.png|500px|frameless|thumb]]<br> | <br>[[File:Ks0033.png|500px|frameless|thumb]]<br> | ||
<br> | |||
==Specification== | ==Specification== | ||
*Interface Type: analog | *Interface Type: analog | ||
*Working Voltage: 5V | *Working Voltage: 5V | ||
*Temperature Range: -55℃~315℃ | *Temperature Range: -55℃~315℃ | ||
<br> | |||
==Connection Diagram == | ==Connection Diagram == | ||
<br>[[File:332.png|500px|frameless|thumb]]<br> | <br>[[File:332.png|500px|frameless|thumb]]<br> | ||
<br> | |||
==Sample Code == | ==Sample Code == | ||
Copy and paste the below code to Arduino software. | |||
<pre> | <pre> | ||
Line 26: | Line 31: | ||
{int sensorValue = analogRead(A0); | {int sensorValue = analogRead(A0); | ||
Serial.println(sensorValue); | Serial.println(sensorValue); | ||
delay(1); | delay(1); } | ||
</pre> | |||
<br> | |||
You can see that the analog value is changing according to the temperature change in the environment. But it’s not very obvious. Let’s solve | The above code is only for analog value. <br> | ||
You can see that the analog value is changing according to the temperature change in the environment. But it’s not very obvious.<br> | |||
Let’s solve this by using the following equation. Then upload the code below to the Arduino board. The value read from the serial port is similar to normal temperature. <br> | |||
e.g. The temperature right now is 30°C. <br> | |||
<pre> | <pre> | ||
#include <math.h> | #include <math.h> | ||
void setup() | |||
{ | |||
Serial.begin(9600); | |||
} | } | ||
void | void loop() | ||
{ | { | ||
double val=analogRead(0); | |||
}</pre> | double fenya=(val/1023)*5; | ||
double r=(5-fenya)/fenya*4700; | |||
Serial.println( 1/( log(r/10000) /3950 + 1/(25+273.15))-273.15); | |||
delay(1000); | |||
} | |||
</pre> | |||
<br> | |||
==Resources == | ==Resources == | ||
'''Video''' | '''Video'''<br> | ||
http://video.keyestudio.com/ks0033/ | |||
http:// | |||
'''PDF'''<br> | |||
https://drive.google.com/open?id=1RLgiaOSsJxZ6TxaOc6YjAQALESPXhR9E | https://drive.google.com/open?id=1RLgiaOSsJxZ6TxaOc6YjAQALESPXhR9E | ||
<br> | |||
==Buy from == | ==Buy from == | ||
'''Official Website''' | |||
*[https://www.keyestudio.com/free-shipping-keyestudio-analog-temperature-sensor-detection-module-for-arduino-p0153.html '''Official Website''' | |||
] | |||
*[https://ae01.alicdn.com/kf/HTB1UVQ_owMPMeJjy1Xbq6AwxVXan/-Free-shipping-KEYES-Analog-temperature-detector-module-for-arduino.jpg_200x200.jpg '''Shop on aliexpress'''] | |||
[[Category: Sensor]] | [[Category: Sensor]] |
Revision as of 09:44, 15 April 2019
Introduction
This module is based on the working principle of a thermistor (resistance varies with temperature change in the environment).
It can sense temperature change in its surrounding and send the data to the analog IO in the Arduino board.
All we need to do is to convert the sensor output data into degrees Celsius temperature via simple programming, finally to display it.
It's both convenient and effective, thus it is widely applied in gardening, home alarm system and other devices.
Specification
- Interface Type: analog
- Working Voltage: 5V
- Temperature Range: -55℃~315℃
Connection Diagram
Sample Code
Copy and paste the below code to Arduino software.
void setup() {Serial.begin(9600); } // the loop routine runs over and over again forever: void loop() {int sensorValue = analogRead(A0); Serial.println(sensorValue); delay(1); }
The above code is only for analog value.
You can see that the analog value is changing according to the temperature change in the environment. But it’s not very obvious.
Let’s solve this by using the following equation. Then upload the code below to the Arduino board. The value read from the serial port is similar to normal temperature.
e.g. The temperature right now is 30°C.
#include <math.h> void setup() { Serial.begin(9600); } void loop() { double val=analogRead(0); double fenya=(val/1023)*5; double r=(5-fenya)/fenya*4700; Serial.println( 1/( log(r/10000) /3950 + 1/(25+273.15))-273.15); delay(1000); }
Resources
Video
http://video.keyestudio.com/ks0033/
PDF
https://drive.google.com/open?id=1RLgiaOSsJxZ6TxaOc6YjAQALESPXhR9E
Buy from
- [https://www.keyestudio.com/free-shipping-keyestudio-analog-temperature-sensor-detection-module-for-arduino-p0153.html Official Website
]