AHT20.Measurement (aht20 v0.4.0) View Source

One sensor measurement report.

Link to this section Summary

Functions

Converts raw sensor output into human-readable struct.

Link to this section Types

Specs

t() :: %AHT20.Measurement{
  dew_point_c: number(),
  humidity_rh: number(),
  temperature_c: number(),
  timestamp_ms: number()
}

Link to this section Functions

Converts raw sensor output into human-readable struct.

iex> %AHT20.Measurement{} = AHT20.Measurement.from_sensor_output(<<28, 38, 154, 118, 66, 231, 118>>)
Link to this function

put_dew_point_c(measurement)

View Source