forked from gozwave/gozw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get.gen.go
55 lines (41 loc) · 980 Bytes
/
get.gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// THIS FILE IS AUTO-GENERATED BY ZWGEN
// DO NOT MODIFY
package thermostatmodev3
import (
"encoding/gob"
"github.com/gozwave/gozw/cc"
)
const CommandGet cc.CommandID = 0x02
func init() {
gob.Register(Get{})
cc.Register(cc.CommandIdentifier{
CommandClass: cc.CommandClassID(0x40),
Command: cc.CommandID(0x02),
Version: 3,
}, NewGet)
}
func NewGet() cc.Command {
return &Get{}
}
// <no value>
type Get struct {
}
func (cmd Get) CommandClassID() cc.CommandClassID {
return 0x40
}
func (cmd Get) CommandID() cc.CommandID {
return CommandGet
}
func (cmd Get) CommandIDString() string {
return "THERMOSTAT_MODE_GET"
}
func (cmd *Get) UnmarshalBinary(data []byte) error {
// According to the docs, we must copy data if we wish to retain it after returning
return nil
}
func (cmd *Get) MarshalBinary() (payload []byte, err error) {
payload = make([]byte, 2)
payload[0] = byte(cmd.CommandClassID())
payload[1] = byte(cmd.CommandID())
return
}