29 lines
577 B
Go
29 lines
577 B
Go
|
package aio
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
|
||
|
"gobot.io/x/gobot"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// ErrAnalogReadUnsupported is error resulting when a driver attempts to use
|
||
|
// hardware capabilities which a connection does not support
|
||
|
ErrAnalogReadUnsupported = errors.New("AnalogRead is not supported by this platform")
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// Error event
|
||
|
Error = "error"
|
||
|
// Data event
|
||
|
Data = "data"
|
||
|
// Vibration event
|
||
|
Vibration = "vibration"
|
||
|
)
|
||
|
|
||
|
// AnalogReader interface represents an Adaptor which has Analog capabilities
|
||
|
type AnalogReader interface {
|
||
|
gobot.Adaptor
|
||
|
AnalogRead(string) (val int, err error)
|
||
|
}
|