This repository has been archived on 2025-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
PKGBUILD/pkg/sensor/interfaces.go

13 lines
190 B
Go

package sensor
import (
"github.com/volker-raschek/flucky/pkg/types"
"time"
)
type Sensor interface {
GetID() string
GetTicker() *time.Ticker
Read() ([]*types.MeasuredValue, error)
}