mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
6d431e0726
INA219: add INA219 driver
14 lines
293 B
Go
14 lines
293 B
Go
package ina219
|
|
|
|
type ErrOverflow struct{}
|
|
|
|
func (e ErrOverflow) Error() string { return "overflow" }
|
|
|
|
type ErrNotReady struct{}
|
|
|
|
func (e ErrNotReady) Error() string { return "not ready" }
|
|
|
|
type ErrConfigMismatch struct{}
|
|
|
|
func (e ErrConfigMismatch) Error() string { return "config mismatch" }
|