stratux/mpu/bmp.go

8 wiersze
106 B
Go

package mpu
type BMP interface {
Temperature() (float64, error)
Pressure() (float64, error)
Close()
}