DS18B20 Water Proof Temperature Probe – Black (1m)

  1. A probe by new original installation import DS18B20 temperature sensor chip.
  2. Stainless steel tube encapsulation waterproof moistureproof prevents rust.
  3. Stainless steel shell (6 * 45 mm), lead length 100 mm (shielding wire) use stability;
  4. 3.0 V-5.5 V power supply;
  5. Temperature range wide: -55 ℃ ~ + 125 ℃;
  6. Without the external components, the unique single bus.

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

80,00 EGP

10 People watching this product now!

Payment Methods:

Description

This is DS18B20 Water Proof Temperature Probe – Black (1m) Original Chip 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 distances.

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 sensing pin, which is required as a pull-up from the DATA to VCC line.

Wired connection

Red: VCC/VDD
Yellow/White: DATA
Black: GND

Robu
 

Features :

  1. Each pin uses a heat-shrinkable tube to prevent short circuits, internal sealing glue, waterproof, moistureproof.
  2. Stainless steel tube encapsulation waterproof moistureproof prevents rust.
  3. Stainless steel tube 6mm diameter by 30mm long
  4. Contains DS18B20 temperature sensor
  5. 9 to 12-bit selectable resolution
  6. Uses 1-Wire interface- requires only one digital pin for communication
  7. Unique 64 bit ID burned into the chip
  8. Multiple sensors can share one pin
  9. Temperature-limit alarm system
  10. Query time is less than 750ms
  11. Without the external components, the unique single bus.

Note: The probe wire length may vary ±3%


Package Includes :

1 x Waterproof Digital Thermal Probe DS18B20 1 meter cable.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
DS18B20VCC/GND/DATA3.3-5V / GND / board data pin + 4.7k pull-up to VCC
📟
DS18B20 Water Proof Temperature Probe - Black (1m)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
DS18B20 Water Proof Temperature Probe - Black (1m) - Arduino Uno
DS18B20 Water Proof Temperature Probe - Black (1m) - Arduino Nano
DS18B20 Water Proof Temperature Probe - Black (1m) - Arduino Mega
DS18B20 Water Proof Temperature Probe - Black (1m) - ESP32
DS18B20 Water Proof Temperature Probe - Black (1m) - ESP8266
DS18B20 Water Proof Temperature Probe - Black (1m) - STM32
DS18B20 Water Proof Temperature Probe - Black (1m) - Raspberry Pi Pico
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_arduino_uno.inoArduino Uno
679 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin 2 on Arduino Uno. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS 2
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_arduino_nano.inoArduino Nano
680 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin 2 on Arduino Nano. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS 2
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_arduino_mega.inoArduino Mega
680 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin 2 on Arduino Mega. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS 2
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_esp32.inoESP32
673 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin 4 on ESP32. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS 4
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_esp8266.inoESP8266
677 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin D4 on ESP8266. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS D4
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_stm32.inoSTM32
677 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin PB4 on STM32. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS PB4
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
📄 File: ds18b20_water_proof_temperature_probe_-_black_(1m)_-_raspberry_pi_pico.inoRaspberry Pi Pico
685 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OneWire data pin 2 on Raspberry Pi Pico. Needs a 4.7k pull-up resistor between data and VCC.
6#include <OneWire.h>
7#include <DallasTemperature.h>
8
9#define ONE_WIRE_BUS 2
10OneWire oneWire(ONE_WIRE_BUS);
11DallasTemperature sensors(&oneWire);
12
13void setup() {
14 Serial.begin(115200);
15 sensors.begin();
16}
17
18void loop() {
19 sensors.requestTemperatures();
20 float tempC = sensors.getTempCByIndex(0);
21
22 if (tempC == DEVICE_DISCONNECTED_C) {
23 Serial.println("Error: DS18B20 not found - check wiring/pull-up resistor.");
24 } else {
25 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
26 }
27
28 delay(1000);
29}
OneWire digital temperature probe. Needs a 4.7k pull-up resistor between DATA and VCC.

Specification

Specification

WeightWeight60,0000 g
Dimensions3 × 2 × 1 cm
modelDS18B20
operating-voltage-vdc3 ~ 5.5
operating-temperature-c-55 to 125
accuracy±0.5°C
cable-length-meter1

Customer Reviews