hybridgroup.gobot/drivers/gpio/gpio.go

72 lines
2.4 KiB
Go
Raw Normal View History

2014-11-30 03:02:10 +08:00
package gpio
import (
"errors"
"github.com/hybridgroup/gobot"
)
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-30 03: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-30 03:02:10 +08:00
)
const (
// Error event
Error = "error"
// Release event
ButtonRelease = "release"
// Push event
ButtonPush = "push"
// Data event
Data = "data"
2015-07-09 00:29:36 +08:00
// Vibration event
Vibration = "vibration"
2014-11-30 03:02:10 +08:00
)
// PwmWriter interface represents an Adaptor which has Pwm capabilities
2014-11-30 03:02:10 +08:00
type PwmWriter interface {
gobot.Adaptor
PwmWrite(string, byte) (err error)
}
// ServoWriter interface represents an Adaptor which has Servo capabilities
2014-11-30 03:02:10 +08:00
type ServoWriter interface {
gobot.Adaptor
ServoWrite(string, byte) (err error)
}
// AnalogReader interface represents an Adaptor which has Analog capabilities
2014-11-30 03:02:10 +08:00
type AnalogReader interface {
gobot.Adaptor
AnalogRead(string) (val int, err error)
}
// DigitalWriter interface represents an Adaptor which has DigitalWrite capabilities
2014-11-30 03:02:10 +08:00
type DigitalWriter interface {
gobot.Adaptor
DigitalWrite(string, byte) (err error)
}
// DigitalReader interface represents an Adaptor which has DigitalRead capabilities
2014-11-30 03:02:10 +08:00
type DigitalReader interface {
gobot.Adaptor
DigitalRead(string) (val int, err error)
}