Smart Home Automation Forum

Full Version: [Arduino source code for KC868-AIO]-01 DS18B20
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Arduino source code for KC868-AIO]-01 DS18B20

Code:
#include <DS18B20.h>

DS18B20 ds1(14); 
DS18B20 ds2(5); 
void setup() {
  Serial.begin(115200);
}
void loop() {
Serial.printf("T1:%.2fC||T2:%.2fC\n",ds1.getTempC(),ds2.getTempC());
      delay(500);
}