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

docs: correct GPIO README link

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2016-12-21 10:56:38 +01:00
parent 2b5caffed3
commit d4b4f06cdc
2 changed files with 3 additions and 9 deletions

View File

@ -3,9 +3,9 @@ Package gpio provides Gobot drivers for General Purpose Input/Output devices.
Installing:
go get -d -u gobot.io/x/gobot/...
go get -d -u gobot.io/x/gobot
For further information refer to gpio README:
https://gobot.io/x/gobot/blob/master/platforms/gpio/README.md
https://github.com/hybridgroup/gobot/blob/master/platforms/gpio/README.md
*/
package gpio
package gpio // import "gobot.io/x/gobot/drivers/gpio"

View File

@ -56,12 +56,6 @@ type ServoWriter interface {
ServoWrite(string, byte) (err error)
}
// AnalogReader interface represents an Adaptor which has Analog capabilities
type AnalogReader interface {
gobot.Adaptor
AnalogRead(string) (val int, err error)
}
// DigitalWriter interface represents an Adaptor which has DigitalWrite capabilities
type DigitalWriter interface {
gobot.Adaptor