DS18B20 Temperature Sensor Module
DS18B20 Temperature Sensor Module
DESCRIPTION:
This module is temperature sensor with chipDS18B20, It’s different from other
NTC- MF523950 temperature sensor(ST1147) or LM35 temperature sensor(SE039).
Specification:
● Chip : DS18B20
PIN CONFIGURATION:
1/4
Example:
This is a simple code for the DS18B20 temperature module, Wire as below:
Code:
// Include the libraries we need
#include <OneWire.h>
#include <DallasTemperature.h>
// Setup a oneWire instance to communicate with any OneWire devices (not just
Maxim/Dallas temperature ICs)
OneWire oneWire(ONE_WIRE_BUS);
/*
* The setup function. We only start the sensors here
2/4
*/
void setup(void)
{
// start serial port
Serial.begin(9600);
Serial.println("Dallas Temperature IC Control Library Demo");
/*
* Main function, get and show the temperature
*/
void loop(void)
{
// call sensors.requestTemperatures() to issue a global temperature
// request to all devices on the bus
Serial.print("Requesting temperatures...");
sensors.requestTemperatures(); // Send the command to get temperatures
Serial.println("DONE");
// After we got the temperatures, we can print them here.
// We use the function ByIndex, and as an example get the temperature from the
first sensor only.
Serial.print("Temperature for the device 1 (index 0) is: ");
Serial.println(sensors.getTempCByIndex(0));
}
3/4
Result:
4/4