LM393 NTC Thermal Temperature Sensor Module for Arduino (SM0002)

คุณสมบัติสินค้า:

LM393 NTC Thermal Temperature Sensor Module ใช้สำหรับวัดอุณหภูมิในช่วง 20 - 80 °C มี output เป็น Digital (0, 1) ใช้ R ปรับค่าได้เพื่อกำหนดค่าการทำงานของ digital output ใช้ไฟเลี้ยง voltage 3.3V-5V

หมวดหมู่ : Sensor Module

Share

  1. the comparator output signal clean waveform is good , driving ability, than 15mA. 
  2.  adjust the temperature distribution bit detection threshold 
  3.  Working voltage 3.3V-5V
  4.  Output format : Digital switching output (0 and 1)
  5.  board PCB size : 3.2cm x 1.4cm 




 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
const int temperaturePin = A2; //กำหนดขาเซ็นเซอร์
int temperatureValue = 0; //กำหนดค่าตัวแปรสำหรับเก็บค่าเซ็นเซอร์

void setup() {
  Serial.begin(115200);
}

void loop() {
  temperatureValue = analogRead(temperaturePin); //อ่าน analog เซ็นเซอร์
  Serial.println(temperatureValue);
  
  if (temperatureValue < 180) { //ถ้าค่าจากเซนเซอร์น้อยกว่าค่าที่ตั้งไว้ ให้ทำงาน
    Serial.println("Temperature reach point");
  }
  
  delay(100);
}

NTC Thermal code.ino

Powered by MakeWebEasy.com
เว็บไซต์นี้มีการใช้งานคุกกี้ เพื่อเพิ่มประสิทธิภาพและประสบการณ์ที่ดีในการใช้งานเว็บไซต์ของท่าน ท่านสามารถอ่านรายละเอียดเพิ่มเติมได้ที่ นโยบายความเป็นส่วนตัว  และ  นโยบายคุกกี้