Skip to content

Commit

Permalink
remove debug spew from AHT10
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke committed Nov 1, 2024
1 parent 49c860f commit c750f43
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ private bool IsBusy()
BusComms.Read(ReadBuffer.Span);

var data = ReadBuffer.ToArray();
Resolver.Log.Info(BitConverter.ToString(data));

var humidity = (data[1] << 12) | (data[2] << 4) | (data[3] >> 4);
conditions.Humidity = new RelativeHumidity((humidity / (double)0x100000) * 100d, RelativeHumidity.UnitType.Percent);
Expand Down

0 comments on commit c750f43

Please sign in to comment.