From e2334ff0c15cb2fd64c083d406d8d73c7c5c3b64 Mon Sep 17 00:00:00 2001 From: Andy Paul Date: Mon, 10 Jul 2023 12:44:08 +0200 Subject: [PATCH] correct a typo. --- Receive/receive.ino | 2 +- Sensor/sensor.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Receive/receive.ino b/Receive/receive.ino index d7ccb00..68a2201 100644 --- a/Receive/receive.ino +++ b/Receive/receive.ino @@ -296,7 +296,7 @@ static bool SHT4X_Init(UseBits &enable) if (enable.SHT4X) { SHT4X = new SHTSensor(SHTSensor::SHT4X); - mySerial->print("SHT5x: "); + mySerial->print("SHT4x: "); enable.SHT4X = SHT4X->init(); if (enable.SHT4X) { diff --git a/Sensor/sensor.ino b/Sensor/sensor.ino index 5b864fd..f0b3472 100644 --- a/Sensor/sensor.ino +++ b/Sensor/sensor.ino @@ -355,7 +355,7 @@ static bool SHT4X_Init(UseBits &enable) if (enable.SHT4X) { SHT4X = new SHTSensor(SHTSensor::SHT4X); - mySerial->print("SHT5x: "); + mySerial->print("SHT4x: "); enable.SHT4X = SHT4X->init(); if (enable.SHT4X) {