13 lines
179 B
Go
13 lines
179 B
Go
package sensor
|
|
|
|
import (
|
|
"github.com/go-flucky/flucky/pkg/types"
|
|
"time"
|
|
)
|
|
|
|
type Sensor interface {
|
|
ID() string
|
|
Read() ([]*types.MeasuredValue, error)
|
|
Ticker() *time.Ticker
|
|
}
|