2014-10-30 08:51:47 +08:00
|
|
|
package sysfs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-10-31 04:41:27 +08:00
|
|
|
IN = "in"
|
|
|
|
OUT = "out"
|
|
|
|
HIGH = 1
|
|
|
|
LOW = 0
|
|
|
|
GPIOPATH = "/sys/class/gpio"
|
2014-10-30 08:51:47 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type DigitalPin struct {
|
|
|
|
pin string
|
2014-10-31 04:41:27 +08:00
|
|
|
label string
|
2014-10-30 08:51:47 +08:00
|
|
|
direction string
|
|
|
|
}
|
|
|
|
|
2014-10-31 07:22:25 +08:00
|
|
|
// NewDigitalPin returns a DigitalPin given the pin number and an optional sysfs pin label.
|
|
|
|
// If no label is supplied the default label will prepend "gpio" to the pin number,
|
|
|
|
// eg. a pin number of 10 will have a label of "gpio10"
|
2014-10-31 06:26:31 +08:00
|
|
|
func NewDigitalPin(pin int, v ...string) *DigitalPin {
|
|
|
|
d := &DigitalPin{pin: strconv.Itoa(pin)}
|
|
|
|
if len(v) > 0 {
|
|
|
|
d.label = v[0]
|
|
|
|
} else {
|
|
|
|
d.label = "gpio" + d.pin
|
|
|
|
}
|
|
|
|
|
|
|
|
return d
|
2014-10-30 08:51:47 +08:00
|
|
|
}
|
2014-10-31 04:41:27 +08:00
|
|
|
|
|
|
|
// Direction returns the current direction of the pin
|
2014-10-30 08:51:47 +08:00
|
|
|
func (d *DigitalPin) Direction() string {
|
|
|
|
return d.direction
|
|
|
|
}
|
|
|
|
|
2014-10-31 07:22:25 +08:00
|
|
|
// SetDirection sets the current direction for the pin
|
2014-10-30 08:51:47 +08:00
|
|
|
func (d *DigitalPin) SetDirection(dir string) error {
|
|
|
|
d.direction = dir
|
2014-10-31 04:41:27 +08:00
|
|
|
_, err := writeFile(fmt.Sprintf("%v/%v/direction", GPIOPATH, d.label), []byte(d.direction))
|
2014-10-30 08:51:47 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-10-31 07:22:25 +08:00
|
|
|
// Write writes to the pin
|
2014-10-31 04:41:27 +08:00
|
|
|
func (d *DigitalPin) Write(b int) error {
|
|
|
|
_, err := writeFile(fmt.Sprintf("%v/%v/value", GPIOPATH, d.label), []byte(strconv.Itoa(b)))
|
|
|
|
return err
|
2014-10-30 08:51:47 +08:00
|
|
|
}
|
|
|
|
|
2014-10-31 04:41:27 +08:00
|
|
|
// Read reads the current value of the pin
|
|
|
|
func (d *DigitalPin) Read() (n int, err error) {
|
2014-10-31 07:06:04 +08:00
|
|
|
buf, err := readFile(fmt.Sprintf("%v/%v/value", GPIOPATH, d.label))
|
2014-10-31 04:41:27 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return strconv.Atoi(string(buf[0]))
|
2014-10-30 08:51:47 +08:00
|
|
|
}
|
|
|
|
|
2014-10-31 04:41:27 +08:00
|
|
|
// Export exports the pin for use by the operating system
|
2014-10-30 08:51:47 +08:00
|
|
|
func (d *DigitalPin) Export() error {
|
2014-10-31 04:41:27 +08:00
|
|
|
_, err := writeFile(GPIOPATH+"/export", []byte(d.pin))
|
2014-10-30 08:51:47 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-10-31 04:41:27 +08:00
|
|
|
// Unexport unexports the pin and releases the pin from the operating system
|
2014-10-30 08:51:47 +08:00
|
|
|
func (d *DigitalPin) Unexport() error {
|
2014-10-31 04:41:27 +08:00
|
|
|
_, err := writeFile(GPIOPATH+"/unexport", []byte(d.pin))
|
2014-10-30 08:51:47 +08:00
|
|
|
return err
|
|
|
|
}
|
2014-10-31 04:41:27 +08:00
|
|
|
|
2014-10-31 07:06:04 +08:00
|
|
|
var writeFile = func(path string, data []byte) (i int, err error) {
|
|
|
|
file, err := os.OpenFile(path, os.O_WRONLY, 0644)
|
2014-10-31 04:41:27 +08:00
|
|
|
defer file.Close()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return file.Write(data)
|
|
|
|
}
|
2014-10-31 07:06:04 +08:00
|
|
|
|
|
|
|
var readFile = func(path string) (b []byte, err error) {
|
|
|
|
return ioutil.ReadFile(path)
|
|
|
|
}
|