mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
57 lines
933 B
Arduino
57 lines
933 B
Arduino
|
//
|
||
|
// FILE: DS18B20_getAddress.ino
|
||
|
// AUTHOR: Rob Tillaart
|
||
|
// VERSION: 0.0.1
|
||
|
// PURPOSE: DS18B20 lib getAddress demo
|
||
|
//
|
||
|
// HISTORY:
|
||
|
// 0.0.1 = 2020-02-18 initial version
|
||
|
|
||
|
#include <OneWire.h>
|
||
|
#include <DS18B20.h>
|
||
|
|
||
|
#define ONE_WIRE_BUS 2
|
||
|
|
||
|
OneWire oneWire(ONE_WIRE_BUS);
|
||
|
DS18B20 sensor(&oneWire);
|
||
|
|
||
|
DeviceAddress da;
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
Serial.begin(115200);
|
||
|
Serial.println(__FILE__);
|
||
|
Serial.print("DS18B20 Library version: ");
|
||
|
Serial.println(DS18B20_LIB_VERSION);
|
||
|
|
||
|
Serial.print("\ngetAddress: ");
|
||
|
Serial.println(sensor.getAddress(da));
|
||
|
|
||
|
sensor.begin();
|
||
|
|
||
|
Serial.print("\ngetAddress: ");
|
||
|
Serial.println(sensor.getAddress(da));
|
||
|
|
||
|
if (!sensor.getAddress(da))
|
||
|
{
|
||
|
Serial.println("No address found!");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
Serial.print("Address: ");
|
||
|
for (uint8_t i = 0; i < 8; i++)
|
||
|
{
|
||
|
if (da[i] < 0x10) Serial.print('0');
|
||
|
Serial.print(da[i], HEX);
|
||
|
}
|
||
|
Serial.println();
|
||
|
}
|
||
|
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// END OF FILE
|