DS18B20 Digital Temperature Sensor

https://newbrand.botshop.co.za/web/image/product.template/754/image_1920?unique=330565f
(0 review)

24.44 24.44 ZAR 24.44 VAT Included

25.00 VAT Included

Not Available For Sale

This combination does not exist.

Component Electronic Sensor Temperature

Internal Reference: SEN-001

While there are many types of temperature sensors available in the market, the DS18B20 Temperature Sensor form DALLAS is the best choice in applications which require high accuracy and high reliability. Its ultra-small size, low hardware overhead, strong anti-interference capability and high accuracy, together with other additional features makes DS18B20 even more popular among users. For electronic enthusiasts and hobbyists, the DS18B20 is a good start for learning and developing temperature-dependent prototypes.

    Technical Specification: 

    Sensor Type: Digital

    Sensing Temperature: -55°C ~ 125°C

    Output Type: 1-Wire®

    Voltage: 3V ~ 5.5V

    Resolution: 12 bit

    Accuracy - Highest (Lowest):  ±0.5°C (±2°C)

    Test Condition: -10°C ~ 85°C (-55°C ~ 125°C)

    Operating Temperature: -55°C ~ 125°C

    Mounting Type: Through Hole

    Package: TO-92-3

    Example Sketch & Diagram

    Library: DallasTemperature.zip

     

    ds18b20-digital-temperature-sensor

    Code

    #include <OneWire.h>
    #include <DallasTemperature.h>
    #define ONE_WIRE_BUS 2
    OneWire oneWire(ONE_WIRE_BUS);
    DallasTemperature sensors(&oneWire);
    
    void setup(void){
     Serial.begin(9600);
     Serial.println("Dallas Temperature IC Control Library Demo");
     sensors.begin();
    }
    
    void loop(void){ 
     Serial.print("Requesting temperatures...");
     sensors.requestTemperatures(); 
     Serial.println("DONE");
     Serial.print("Temperature for the device 1 (index 0) is: ");
     Serial.println(sensors.getTempCByIndex(0)); 
    }

    Pinouts:
    ds18b20-digital-temperature-sensor