-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaccessory_programmable_switch.go
executable file
·67 lines (56 loc) · 2.15 KB
/
accessory_programmable_switch.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
56
57
58
59
60
61
62
63
64
65
66
67
package homekit
import (
"github.com/brutella/hap/accessory"
"github.com/brutella/hap/service"
)
//AccessoryProgrammableSwitch struct
type AccessoryProgrammableSwitch struct {
*accessory.A
ProgrammableSwitch *service.StatelessProgrammableSwitch
}
func (acc *AccessoryProgrammableSwitch) GetType() byte {
return acc.A.Type
}
func (acc *AccessoryProgrammableSwitch) GetID() uint64 {
return acc.A.Id
}
func (acc *AccessoryProgrammableSwitch) SetID(id uint64) {
acc.A.Id = id
}
func (acc *AccessoryProgrammableSwitch) GetSN() string {
return acc.A.Info.SerialNumber.Value()
}
func (acc *AccessoryProgrammableSwitch) GetName() string {
return acc.A.Info.Name.Value()
}
func (acc *AccessoryProgrammableSwitch) GetAccessory() *accessory.A {
return acc.A
}
// NewAccessoryProgrammableSwitch returns *ProgrammableSwitch.
// (COMPATIBILITY) - left for compatibility, recommended NewAcc...(id, info, args..)
//
// info (accessory.Info) - struct accessory.Info{Name, SerialNumber, Manufacturer, Model, Firmware string}
// args... are not used
func NewAccessoryProgrammableSwitch(info accessory.Info, args ...interface{}) *AccessoryProgrammableSwitch {
acc := AccessoryProgrammableSwitch{}
acc.A = accessory.New(info, accessory.TypeSwitch)
acc.ProgrammableSwitch = service.NewStatelessProgrammableSwitch()
acc.AddS(acc.ProgrammableSwitch.S)
return &acc
}
// NewAccessoryProgrammableSwitch returns *ProgrammableSwitch.
// HomeKit requires that every accessory has a unique id, which must not change between system restarts.
// The best would be to specify the unique id for every accessory yourself.
//
// id (uint64) - accessory aid
// info (accessory.Info) - struct accessory.Info{Name, SerialNumber, Manufacturer, Model, Firmware string}
// args... are not used
func NewAccProgrammableSwitch(id uint64, info accessory.Info, args ...interface{}) *AccessoryProgrammableSwitch {
acc := AccessoryProgrammableSwitch{}
acc.A = accessory.New(info, accessory.TypeSwitch)
acc.ProgrammableSwitch = service.NewStatelessProgrammableSwitch()
acc.AddS(acc.ProgrammableSwitch.S)
acc.A.Id = id
return &acc
}
func (acc *AccessoryProgrammableSwitch) OnValuesRemoteUpdates(fn func()) {}