Ds18B20 Water Proof Temperature Probe
Rs. 56.00 Rs. 62.00
- Brand: https://www.maximintegrated.com/en/products/sensors/DS18B20.html
- Product Code: SEN-TEMP
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.maximintegrated.com/en/products/sensors/DS18B20.html?intcid=para
//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