1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00

64 lines
2.3 KiB
Go
Raw Normal View History

2014-11-29 11:02:10 -08:00
package gpio
import (
"errors"
)
var (
// ErrServoWriteUnsupported is the error resulting when a driver attempts to use
// hardware capabilities which a connection does not support
ErrServoWriteUnsupported = errors.New("ServoWrite is not supported by this platform")
// ErrPwmWriteUnsupported is the error resulting when a driver attempts to use
// hardware capabilities which a connection does not support
ErrPwmWriteUnsupported = errors.New("PwmWrite is not supported by this platform")
// 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")
// ErrDigitalWriteUnsupported is the error resulting when a driver attempts to use
// hardware capabilities which a connection does not support
2014-11-29 11:02:10 -08:00
ErrDigitalWriteUnsupported = errors.New("DigitalWrite is not supported by this platform")
// ErrDigitalReadUnsupported is the error resulting when a driver attempts to use
// hardware capabilities which a connection does not support
ErrDigitalReadUnsupported = errors.New("DigitalRead is not supported by this platform")
// ErrServoOutOfRange is the error resulting when a driver attempts to use
// hardware capabilities which a connection does not support
ErrServoOutOfRange = errors.New("servo angle must be between 0-180")
2014-11-29 11:02:10 -08:00
)
const (
// Error event
Error = "error"
// ButtonRelease event
ButtonRelease = "release"
// ButtonPush event
ButtonPush = "push"
// Data event
Data = "data"
2015-07-08 09:29:36 -07:00
// Vibration event
Vibration = "vibration"
// MotionDetected event
MotionDetected = "motion-detected"
// MotionStopped event
MotionStopped = "motion-stopped"
2014-11-29 11:02:10 -08:00
)
// PwmWriter interface represents an Adaptor which has Pwm capabilities
2014-11-29 11:02:10 -08:00
type PwmWriter interface {
PwmWrite(string, byte) (err error)
}
// ServoWriter interface represents an Adaptor which has Servo capabilities
2014-11-29 11:02:10 -08:00
type ServoWriter interface {
ServoWrite(string, byte) (err error)
}
// DigitalWriter interface represents an Adaptor which has DigitalWrite capabilities
2014-11-29 11:02:10 -08:00
type DigitalWriter interface {
DigitalWrite(string, byte) (err error)
}
// DigitalReader interface represents an Adaptor which has DigitalRead capabilities
2014-11-29 11:02:10 -08:00
type DigitalReader interface {
DigitalRead(string) (val int, err error)
}