-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaccessory_sensor_smoke.go
executable file
·67 lines (56 loc) · 1.93 KB
/
accessory_sensor_smoke.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"
)
//AccessorySensorSmoke struct
type AccessorySensorSmoke struct {
*accessory.A
SmokeSensor *service.SmokeSensor
}
func (acc *AccessorySensorSmoke) GetType() byte {
return acc.A.Type
}
func (acc *AccessorySensorSmoke) GetID() uint64 {
return acc.A.Id
}
func (acc *AccessorySensorSmoke) SetID(id uint64) {
acc.A.Id = id
}
func (acc *AccessorySensorSmoke) GetSN() string {
return acc.A.Info.SerialNumber.Value()
}
func (acc *AccessorySensorSmoke) GetName() string {
return acc.A.Info.Name.Value()
}
func (acc *AccessorySensorSmoke) GetAccessory() *accessory.A {
return acc.A
}
//NewAccessorySensorSmoke return *SensorSmoke.
// (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 NewAccessorySensorSmoke(info accessory.Info, args ...interface{}) *AccessorySensorSmoke {
acc := AccessorySensorSmoke{}
acc.A = accessory.New(info, accessory.TypeSensor)
acc.SmokeSensor = service.NewSmokeSensor()
acc.AddS(acc.SmokeSensor.S)
return &acc
}
//NewAccSensorSmoke return *SensorSmoke.
// 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 NewAccSensorSmoke(id uint64, info accessory.Info, args ...interface{}) *AccessorySensorSmoke {
acc := AccessorySensorSmoke{}
acc.A = accessory.New(info, accessory.TypeSensor)
acc.SmokeSensor = service.NewSmokeSensor()
acc.AddS(acc.SmokeSensor.S)
acc.A.Id = id
return &acc
}
func (acc *AccessorySensorSmoke) OnValuesRemoteUpdates(fn func()) {}