BMP280

Hex versionCircleCI

Read temperature and pressure measurements from a Bosch BMP280 sensor in Elixir.

Add {:bmp280, "~> 0.1.0"} to your project's dependencies. Here's an example use:

iex> {:ok, bmp} = BMP280.start_link([])
{:ok, \#PID<0.29929.0>}
iex> BMP280.read(bmp)
{:ok,
 %BMP280.Measurement{
   altitude_m: 46.60861034844783,
   pressure_pa: 100766.41878837062,
   temperature_c: 17.373406414553756
 }}

All measurements are reported in SI units.

The altitude measurement is computed from the measured barometric pressure. To be accurate, it requires either the current sea level pressure or the current altitude. Here's an example:

iex> BMP280.force_altitude(bmp, 100)
:ok

Subsequent altitude reports should be more accurate until the weather changes.

Support for other Bosch barometric sensors

Successors to the BMP280 are similar, but not supported yet. If you're using one of them, please help me add support for them.