هذا المُنتج قد لا يكون متوفراً الآن. إضغط هنا لمنتجات مماثلة

سعر ومواصفات KY-001 Temperature Sensor

  • أفضل سعر لـ KY-001 Temperature Sensor by تك ديبوت مصر فى مصر هو 30 ج.م.
  • طرق الدفع المتاحة هى
    دفع عند الاستلام
  • تكلفة التوصيل هى 35+ ج.م., والتوصيل فى خلال 2-4 أيام
  • تباع المنتجات المماثلة لـ KY-001 Temperature Sensor فى فيوتشر إلكترونيكس, أمازون, جوميا مع اسعار تبدأ من 390 ج.م.
  • أول ظهور لهذا المنتج كان فى أغسطس 04, 2016

المواصفات الفنية

Weight:5 g

منتجات مماثلة

متجر

طرق الدفع

مدة التوصيل

تكلفة التوصيل

وصف تك ديبوت مصر

Description

KY-001 Temperature Sensor Specifications

  1. The module uses a single-bus digital temperature sensor DS18B20, the external power supply voltage Range is 3.0 V to 5.5 V, No standby power. Measurement temperature range of -55 ° C to +125 , Fahrenheit equivalent 67 ° F to 257 ° F, -10 °C to +85 ° C range accuracy of ± 0.5 ° C.
  2. The temperature sensor is a programmable resolution of 9 to 12 temperature conversion to 12-bit digital format With a maximum of 750 milliseconds formula User definable nonvolatile temperature alarm settings.

Required Hardware Devices

  • Arduino controller × 1
  • KY-001 Temperature Sensor Module × 1
  • USB data cable × 1
  • download and install the OneWire libary

Connecting

  • Pin – = connect to Arduino GND
  • Pin (middel) = connect to arduino +5V
  • Pin S = Signal, in this example connect to Arduino Digital port 10

When everything is properly connected, there is a led on the module that blinks when the sensor is read.

Code

#include <OneWire.h>// KY-001 Temperature Sensor with DS18S20 Temperature chip i/o OneWire ds(10);// on pin 10void setup(void){// initialize inputs/outputs// start serial port Serial.begin(9600);}void loop(void){//For conversion of raw data to Cint HighByte, LowByte, TReading, SignBit, Tc_100, Whole, Fract;   byte i; byte present =0; byte data[12]; byte addr[8];if(!ds.search(addr)){ Serial.print("No more addresses.n"); ds.reset_search();return;}   Serial.print("R=");for( i =0; i <8; i++){ Serial.print(addr[i], HEX); Serial.print(" ");}if( OneWire::crc8( addr,7)!= addr[7]){ Serial.print("CRC is not valid!n");return;}if( addr[0]==0x10){ Serial.print("Device is a DS18S20 family device.n");}elseif( addr[0]==0x28){ Serial.print("Device is a DS18B20 family device.n");}else{ Serial.print("Device family is not recognized: 0x"); Serial.println(addr[0],HEX);return;}   ds.reset(); ds.select(addr); ds.write(0x44,1);// start conversion, with parasite power on at the end   delay(1000);// maybe 750ms is enough, maybe not// we might do a ds.depower() here, but the reset will take care of it.   present = ds.reset(); ds.select(addr); ds.write(0xBE);// Read Scratchpad   Serial.print("P="); Serial.print(present,HEX); Serial.print(" ");for( i =0; i <9; i++){// we need 9 bytes data[i]= ds.read(); Serial.print(data[i], HEX); Serial.print(" ");} Serial.print(" CRC="); Serial.print( OneWire::crc8( data,8), HEX); Serial.println();//Conversion of raw data to C LowByte = data[0]; HighByte = data[1]; TReading =(HighByte <<8)+ LowByte; SignBit = TReading &0x8000;// test most sig bitif(SignBit)// negative{ TReading =(TReading ^0xffff)+1;// 2's comp} Tc_100 =(6* TReading)+ TReading /4;// multiply by (100 * 0.0625) or 6.25   Whole = Tc_100 /100;// separate off the whole and fractional portions Fract = Tc_100 %100;if(SignBit)// If its negative{ Serial.print("-");} Serial.print(Whole); Serial.print(".");if(Fract <10){ Serial.print("0");} Serial.print(Fract);   Serial.print("n");//End conversion to C}

الأكثر شهرة في مكونات الدوائر الإلكترونيةالمزيد

    مميزات وعيوب KY-001 Temperature Sensor

    • لا يوجد تقييمات لهذا المُنتج.

    مراجعات KY-001 Temperature Sensor

    • loading video reviews