Skip to content

Commit

Permalink
correct a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
nurazur committed Jul 10, 2023
1 parent bab18a3 commit e2334ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Receive/receive.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion Sensor/sensor.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit e2334ff

Please sign in to comment.