Keyestudio EASY plug Analog Sıcaklık Sensörü
Contents
EASY plug Analog Sıcaklık Sensörü
Tanıtım
Bu modül bir termistörün çalışma prensibine dayanır (direnç ortamdaki sıcaklık değişikliğine göre değişir). Çevresindeki sıcaklık değişimini algılayabilir ve verileri Arduino kartındaki analog IO'ya gönderebilir. Yapmamız gereken tek şey, basit programlama ile sensör çıkış verilerini santigrat dereceye dönüştürmek ve görüntülemek. Hem kullanışlı hem de etkilidir ve bahçe, ev alarm sistemi ve diğer cihazlarda yaygın olarak uygulanır.
Not: bu modülün EASY plug kontrol kartı ile birlikte kullanılması gerekir.
Özellikler
- Interface: Easy plug
- Sensör tipi: analog
Çalışma gerilimi: 5V
Sıcaklık aralığı: -55 ℃ ~ 315 ℃
Boyut: 38 * 20mm
Ağırlık: 5g
Connection Diagram
Sample Code
void setup() {Serial.begin(9600); } // the loop routine runs over and over again forever: void loop() {int sensorValue = analogRead(A1); Serial.println(sensorValue); delay(1); }
We 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. The value read from the serial port is similar to normal temperature, eg. The temperature right now is 30C.
#includedouble Thermister(int RawADC) { double Temp; Temp = log(((10240000/RawADC) - 10000)); Temp = 1 / (0.001129148 + (0.000234125 + (0.0000000876741 * Temp * Temp ))* Temp ); Temp = Temp - 273.15; // Convert Kelvin to Celcius return Temp; } void setup() {Serial.begin(9600); } void loop() { Serial.print(Thermister(analogRead(1))); // display Fahrenheit Serial.println("c"); delay(500); }
Resources
https://drive.google.com/open?id=1kSw1IcUuL0xmvvSrmTw0gmK_2489tRwh