Wish List 0

Ds18B20 Water Proof Temperature Probe

Rs. 56.00 Rs. 62.00

-This is the DS18B20 Water Proof Temperature Probe – Black (1m) which is based on the DS18B20 sensor.
-It is very handy for when you need to measure something far away, or in wet conditions.
-Because they are digital, you don’t get any signal degradation even over a long distance.
-These 1-wire digital temperature sensors are fairly precise (±0.5°C over much of the range) and can give up to 12 bits of precision from the onboard digital-to-analog converter.
-They work great with any microcontroller using a single digital pin, and you can even connect multiple ones to the same pin, each one has a unique 64-bit ID burned in at the factory to differentiate them.  Usable with 3.0-5.0V systems.
-When using with microcontroller put a 4.7k resistor to the sensing pin, which is required as a pullup from the DATA to the VCC line.

Wired connection
-Red: VCC/VDD
-Yellow/White: DATA
-Black: GND
We also have the same module with Original DS18B20 IC Chip inside, to buy it, click below
DS18B20 Water Proof Temperature Probe – Black (1m) Original Chip
(Note that except price and quality all other parameters including working principle, functionality, etc. are same)

Features:
-Each pin uses a heat-shrinkable tube to prevent short circuit, internal sealing glue.
-Stainless steel tube encapsulation waterproof moisture proof prevents rust.
-Stainless steel tube 6mm diameter by 30mm long.
-Contains DS18B20 temperature sensor.
-Uses 1-Wire interface- requires only one digital pin for communication.
-Unique 64 bit ID burned into the chip.
-Multiple sensors can share one pin.
-Temperature-limit alarm system.
-Without the external components, the unique single bus.

SPECIFICATIONS:
Supply voltage (V)      3.0 – 5.5V
Temperature range       -55 ~ +125 °C
Probe diameter          6mm
Probe length            50mm
Resolution              9 ~ 12 bit
Query time              750 msec
Shipment Weight         0.115 kg
Shipment Dimensions     7 × 5 × 3 cm

OVERVIEW:

-A probe by new original installation import DS18B20 temperature sensor chip.

-Chip each pin use heat shrinkable tube to prevent short circuit, internal sealing glue, waterproof, moisture proof.

-Stainless steel tube encapsulation waterproof moisture proof prevent rust.

-Stainless steel shell (6 x 45 mm), lead length 100 cm (shielding wire) use stability.

-Without the external components, the unique single bus

PACKAGE INCLUDES:

1 PCS x Ds18B20 Water Proof Temperature Probe


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/iotboys/how-to-use-ds18b20-water-proof-temperature-sensor-2adecc

#include <OneWire.h>

#include <DallasTemperature.h>


#define ONE_WIRE_BUS 5


OneWire oneWire(ONE_WIRE_BUS);


DallasTemperature sensors(&oneWire);


 float Celcius=0;

 float Fahrenheit=0;

void setup(void)

{

  

  Serial.begin(9600);

  sensors.begin();

}


void loop(void)

  sensors.requestTemperatures(); 

  Celcius=sensors.getTempCByIndex(0);

  Fahrenheit=sensors.toFahrenheit(Celcius);

  Serial.print(" C  ");

  Serial.print(Celcius);

  Serial.print(" F  ");

  Serial.println(Fahrenheit);

  delay(1000);

}

15 days

Write a review

Please login or register to review