Smart Home Automation Forum

Full Version: [Arduino source code for KC868-ASR]-03 DS18B20
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
#include <DS18B20.h>

DS18B20 ds1(32);  //channel-1-DS18b20
DS18B20 ds2(33);  //channel-2-DS18b20


void setup() {
  Serial.begin(115200);
}

void loop() {

Serial.printf("T1:%.2f || T2:%.2f \n",ds1.getTempC(),ds2.getTempC());
delay(1000);
}