added correction option
This commit is contained in:
@@ -109,7 +109,7 @@ void notFound(AsyncWebServerRequest *request) {
|
||||
|
||||
void readSensor() {
|
||||
// read the actual temperature after it's been converted
|
||||
temperature = sensor.getTempCByIndex(0);
|
||||
temperature = sensor.getTempCByIndex(0) + CORRECTION;
|
||||
// do what you need with the temperature here
|
||||
metrics = "temp ";
|
||||
metrics += temperature;
|
||||
|
||||
@@ -4,3 +4,4 @@
|
||||
#define DS18B20_PIN 0
|
||||
#define RELAY_PIN 2
|
||||
#define METRICS_EXPORT 1
|
||||
#define CORRECTION 0
|
||||
|
||||
Reference in New Issue
Block a user