03-02-2023, 06:38 AM
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);
}