2014-04-28 09:54:41 +08:00
|
|
|
package i2c
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
|
|
)
|
|
|
|
|
|
|
|
type BlinkMDriver struct {
|
|
|
|
gobot.Driver
|
|
|
|
Adaptor I2cInterface
|
|
|
|
}
|
|
|
|
|
2014-05-23 12:33:05 +08:00
|
|
|
func NewBlinkMDriver(a I2cInterface, name string) *BlinkMDriver {
|
2014-04-28 09:54:41 +08:00
|
|
|
return &BlinkMDriver{
|
|
|
|
Driver: gobot.Driver{
|
2014-05-23 12:33:05 +08:00
|
|
|
Name: name,
|
2014-04-28 09:54:41 +08:00
|
|
|
Commands: []string{
|
|
|
|
"RgbC",
|
|
|
|
"FadeC",
|
|
|
|
"ColorC",
|
|
|
|
"FirmwareVersionC",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Adaptor: a,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BlinkMDriver) Start() bool {
|
|
|
|
b.Adaptor.I2cStart(0x09)
|
2014-06-07 07:58:17 +08:00
|
|
|
b.Adaptor.I2cWrite([]byte("o"))
|
2014-04-28 09:54:41 +08:00
|
|
|
b.Rgb(0, 0, 0)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
func (b *BlinkMDriver) Init() bool { return true }
|
|
|
|
func (b *BlinkMDriver) Halt() bool { return true }
|
|
|
|
|
|
|
|
func (b *BlinkMDriver) Rgb(red byte, green byte, blue byte) {
|
2014-06-07 07:58:17 +08:00
|
|
|
b.Adaptor.I2cWrite([]byte("n"))
|
|
|
|
b.Adaptor.I2cWrite([]byte{red, green, blue})
|
2014-04-28 09:54:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BlinkMDriver) Fade(red byte, green byte, blue byte) {
|
2014-06-07 07:58:17 +08:00
|
|
|
b.Adaptor.I2cWrite([]byte("c"))
|
|
|
|
b.Adaptor.I2cWrite([]byte{red, green, blue})
|
2014-04-28 09:54:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BlinkMDriver) FirmwareVersion() string {
|
2014-06-07 07:58:17 +08:00
|
|
|
b.Adaptor.I2cWrite([]byte("Z"))
|
|
|
|
data := b.Adaptor.I2cRead(2)
|
2014-04-28 09:54:41 +08:00
|
|
|
if len(data) != 2 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%v.%v", data[0], data[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BlinkMDriver) Color() []byte {
|
2014-06-07 07:58:17 +08:00
|
|
|
b.Adaptor.I2cWrite([]byte("g"))
|
|
|
|
data := b.Adaptor.I2cRead(3)
|
2014-04-28 09:54:41 +08:00
|
|
|
if len(data) != 3 {
|
|
|
|
return make([]byte, 0)
|
|
|
|
}
|
2014-06-07 07:58:17 +08:00
|
|
|
return []byte{data[0], data[1], data[2]}
|
2014-04-28 09:54:41 +08:00
|
|
|
}
|