stratux/mpu/bmp.go

8 wiersze
106 B
Go
Czysty Zwykły widok Historia

package mpu
type BMP interface {
Temperature() (float64, error)
2016-11-23 15:34:41 +00:00
Pressure() (float64, error)
Close()
}