forked from brutella/hc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heater_cooler.go
36 lines (26 loc) · 1.02 KB
/
heater_cooler.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
// THIS FILE IS AUTO-GENERATED
package service
import (
"github.com/brutella/hc/characteristic"
)
const TypeHeaterCooler = "BC"
type HeaterCooler struct {
*Service
Active *characteristic.Active
CurrentHeaterCoolerState *characteristic.CurrentHeaterCoolerState
TargetHeaterCoolerState *characteristic.TargetHeaterCoolerState
CurrentTemperature *characteristic.CurrentTemperature
}
func NewHeaterCooler() *HeaterCooler {
svc := HeaterCooler{}
svc.Service = New(TypeHeaterCooler)
svc.Active = characteristic.NewActive()
svc.AddCharacteristic(svc.Active.Characteristic)
svc.CurrentHeaterCoolerState = characteristic.NewCurrentHeaterCoolerState()
svc.AddCharacteristic(svc.CurrentHeaterCoolerState.Characteristic)
svc.TargetHeaterCoolerState = characteristic.NewTargetHeaterCoolerState()
svc.AddCharacteristic(svc.TargetHeaterCoolerState.Characteristic)
svc.CurrentTemperature = characteristic.NewCurrentTemperature()
svc.AddCharacteristic(svc.CurrentTemperature.Characteristic)
return &svc
}