本文整理汇总了Golang中github.com/pdf/golifx/common.Light类的典型用法代码示例。如果您正苦于以下问题:Golang Light类的具体用法?Golang Light怎么用?Golang Light使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Light类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: updateLightColors
func updateLightColors(light common.Light, haLight model.LightBulb) {
// HAP: [0...360]
// LIFX: [0...MAX_UINT16]
hue := haLight.GetHue()
convertedHue := uint16(math.MaxUint16 * float64(hue) / 360)
// HAP: [0...100]
// LIFX: [0...MAX_UINT16]
saturation := haLight.GetSaturation()
convertedSaturation := uint16(math.MaxUint16 * float64(saturation) / 100)
// HAP: [0...100]
// LIFX: [0...MAX_UINT16]
brightness := haLight.GetBrightness()
convertedBrightness := uint16(math.MaxUint16 * int(brightness) / 100)
// HAP: ?
// LIFX: [2500..9000]
kelvin := HSBKKelvinDefault
log.Infof("[updateLightColors] Hue: %s => %s, Saturation: %s => %s, Brightness: %s => %s", hue, convertedHue, saturation, convertedSaturation, brightness, convertedBrightness)
color := common.Color{
Hue: convertedHue,
Saturation: convertedSaturation,
Brightness: convertedBrightness,
Kelvin: kelvin,
}
light.SetColor(color, 1*time.Second)
}
开发者ID:hsystr,项目名称:lifx-homekit,代码行数:31,代码来源:lifx-homekit.go
示例2: updateHaPowerState
func updateHaPowerState(light common.Light, haLight model.LightBulb) (err error) {
turnedOn, err := light.GetPower()
if err != nil {
log.WithField(`error`, err).Error(`Getting power state light`)
return err
}
haLight.SetOn(turnedOn)
return nil
}
开发者ID:hsystr,项目名称:lifx-homekit,代码行数:12,代码来源:lifx-homekit.go
示例3: handleExpiredLight
func handleExpiredLight(light common.Light) (err error) {
id := light.ID()
meta, exists := lights[id]
if !exists {
log.Debugf("Cannot remove a light with the ID '%s' that has not been added before", id)
return nil
}
_ = meta.light.CloseSubscription(lights[id].subscription)
delete(lights, id)
return nil
}
开发者ID:hsystr,项目名称:lifx-homekit,代码行数:15,代码来源:lifx-homekit.go
示例4: updateHaColors
func updateHaColors(light common.Light, haLight model.LightBulb) (err error) {
color, err := light.GetColor()
if err != nil {
log.WithField(`error`, err).Error(`Getting color state of light`)
return err
}
hue := color.Hue
saturation := color.Saturation
brightness := color.Brightness
convertedHue := float64(hue) * 360 / math.MaxUint16
convertedSaturation := float64(saturation) * 100 / math.MaxUint16
convertedBrightness := int(brightness) * 100 / math.MaxUint16
log.Infof("[updateHaColors] Hue: %s => %s, Saturation: %s => %s, Brightness: %s => %s", hue, convertedHue, saturation, convertedSaturation, brightness, convertedBrightness)
haLight.SetHue(convertedHue)
haLight.SetSaturation(convertedSaturation)
haLight.SetBrightness(convertedBrightness)
return nil
}
开发者ID:hsystr,项目名称:lifx-homekit,代码行数:23,代码来源:lifx-homekit.go
示例5: remove
func (b *boblightSync) remove(l common.Light) {
b.Lock()
log.WithField(`light`, l.ID()).Debug(`Removing boblight sync`)
if c, ok := b.lights[l.ID()]; ok {
close(c)
delete(b.lights, l.ID())
}
b.Unlock()
}
开发者ID:pdf,项目名称:kodi-callback-daemon,代码行数:9,代码来源:rpc.go
示例6: sync
func (b *boblightSync) sync(l common.Light, boblightIDs []uint16, rateLimit time.Duration, c closer) {
ticker := time.NewTicker(time.Second / 20)
for {
select {
case <-c:
ticker.Stop()
return
case <-ticker.C:
colors := make([]common.Color, len(boblightIDs))
for i, id := range boblightIDs {
bColor, err := boblight.Lights.Get(id)
if err != nil {
continue
}
colors[i] = bColor.ToLifx()
}
if err := l.SetColor(common.AverageColor(colors...), rateLimit); err != nil {
continue
}
}
}
}
开发者ID:pdf,项目名称:kodi-callback-daemon,代码行数:24,代码来源:rpc.go
示例7: add
func (b *boblightSync) add(l common.Light, boblightIDs []uint16, rateLimit time.Duration) {
log.WithField(`light`, l.ID()).Debug(`Adding boblight sync`)
b.RLock()
_, ok := b.lights[l.ID()]
b.RUnlock()
if ok {
return
}
c := make(closer)
b.Lock()
b.lights[l.ID()] = c
go b.sync(l, boblightIDs, rateLimit, c)
b.Unlock()
}
开发者ID:pdf,项目名称:kodi-callback-daemon,代码行数:15,代码来源:rpc.go
示例8: ToggleLight
func ToggleLight(light common.Light) {
power, _ := light.GetPower()
light.SetPower(!power)
}
开发者ID:Pmaene,项目名称:hklifx,代码行数:4,代码来源:hklifxd.go
示例9: GetHKLight
func GetHKLight(light common.Light) *HKLight {
hkLight, found := lights[light.ID()]
if found {
return hkLight
}
label, _ := light.GetLabel()
log.Printf("[INFO] Creating New HKLight for %s", label)
info := model.Info{
Name: label,
Manufacturer: "LIFX",
}
lightBulb := accessory.NewLightBulb(info)
power, _ := light.GetPower()
lightBulb.SetOn(power)
color, _ := light.GetColor()
hue, saturation, brightness := ConvertLIFXColor(color)
lightBulb.SetBrightness(int(brightness))
lightBulb.SetSaturation(saturation)
lightBulb.SetHue(hue)
transport, err := hap.NewIPTransport(pin, lightBulb.Accessory)
if err != nil {
log.Fatal(err)
}
go func() {
transport.Start()
}()
hkLight = &HKLight{lightBulb.Accessory, nil, transport, lightBulb}
lights[light.ID()] = hkLight
lightBulb.OnIdentify(func() {
timeout := 1 * time.Second
for i := 0; i < 4; i++ {
ToggleLight(light)
time.Sleep(timeout)
}
})
lightBulb.OnStateChanged(func(power bool) {
log.Printf("[INFO] Changed State for %s", label)
light.SetPower(power)
})
updateColor := func(light common.Light) {
// HAP: [0...360]
// LIFX: [0...MAX_UINT16]
hue := lightBulb.GetHue()
// HAP: [0...100]
// LIFX: [0...MAX_UINT16]
saturation := lightBulb.GetSaturation()
// HAP: [0...100]
// LIFX: [0...MAX_UINT16]
brightness := lightBulb.GetBrightness()
// [HSBKKelvinMin..HSBKKelvinMax]
kelvin := HSBKKelvinDefault
lifxHue := math.MaxUint16 * float64(hue) / float64(characteristic.MaxHue)
lifxSaturation := math.MaxUint16 * float64(saturation) / float64(characteristic.MaxSaturation)
lifxBrightness := math.MaxUint16 * float64(brightness) / float64(characteristic.MaxBrightness)
color := common.Color{
uint16(lifxHue),
uint16(lifxSaturation),
uint16(lifxBrightness),
kelvin,
}
light.SetColor(color, 500*time.Millisecond)
}
lightBulb.OnHueChanged(func(value float64) {
log.Printf("[INFO] Changed Hue for %s to %d", label, value)
updateColor(light)
})
lightBulb.OnSaturationChanged(func(value float64) {
log.Printf("[INFO] Changed Saturation for %s to %d", label, value)
updateColor(light)
})
lightBulb.OnBrightnessChanged(func(value int) {
log.Printf("[INFO] Changed Brightness for %s to %d", label, value)
updateColor(light)
})
return hkLight
}
开发者ID:Pmaene,项目名称:hklifx,代码行数:99,代码来源:hklifxd.go
示例10: handleNewLight
func handleNewLight(light common.Light) (err error) {
id := light.ID()
_, exists := lights[id]
if exists {
log.Debugf("A light with the ID '%s' has already been added", id)
return nil
}
subscription, err := light.NewSubscription()
if err != nil {
log.WithField(`error`, err).Error(`Subscribing to light events`)
return err
}
label, _ := light.GetLabel()
log.Infof("Adding light [%s]", label)
info := model.Info{
Name: label,
Manufacturer: "LIFX",
}
haLight := accessory.NewLightBulb(info)
lights[id] = lightMeta{
light: light,
subscription: subscription,
haLight: haLight,
}
// Get the initial state of the light and communicate it via HomeKit
updateHaPowerState(light, haLight)
updateHaColors(light, haLight)
events := subscription.Events()
go func() {
for {
select {
case event := <-events:
switch event := event.(type) {
case common.EventUpdateColor:
log.Infof("Light: %s, Event: Update Color", id)
updateHaColors(light, haLight)
case common.EventUpdateLabel:
// TODO: Find out how to update the name of a homekit device
log.Infof("Light: %s, Event: Update Label", id)
case common.EventUpdatePower:
log.Infof("Light: %s, Event: Update Power", id)
updateHaPowerState(light, haLight)
default:
log.Debugf("Unhandled event on light: %+v", event)
continue
}
}
}
}()
haLight.OnIdentify(func() {
timeout := 1 * time.Second
for i := 0; i < 4; i++ {
toggleLight(light)
time.Sleep(timeout)
}
})
haLight.OnStateChanged(func(on bool) {
go func() {
light.SetPower(on)
}()
})
haLight.OnBrightnessChanged(func(value int) {
go func() {
updateLightColors(light, haLight)
}()
})
haLight.OnSaturationChanged(func(value float64) {
go func() {
updateLightColors(light, haLight)
}()
})
haLight.OnHueChanged(func(value float64) {
go func() {
updateLightColors(light, haLight)
}()
})
transport, err := hap.NewIPTransport(pin, haLight.Accessory)
if err != nil {
log.Fatal(err)
}
go func() {
transport.Start()
}()
//.........这里部分代码省略.........
开发者ID:hsystr,项目名称:lifx-homekit,代码行数:101,代码来源:lifx-homekit.go
示例11: toggleLight
func toggleLight(light common.Light) {
turnedOn, _ := light.GetPower()
light.SetPower(!turnedOn)
}
开发者ID:hsystr,项目名称:lifx-homekit,代码行数:4,代码来源:lifx-homekit.go
示例12: GetHKLight
func GetHKLight(light common.Light) *HKLight {
hkLight, found := lights[light.ID()]
if found {
return hkLight
}
label, _ := light.GetLabel()
log.Debug.Printf("Creating New HKLight for %s", label)
info := accessory.Info{
Name: label,
Manufacturer: "LIFX",
}
acc := accessory.NewLightbulb(info)
power, _ := light.GetPower()
acc.Lightbulb.On.SetValue(power)
color, _ := light.GetColor()
hue, saturation, brightness := ConvertLIFXColor(color)
acc.Lightbulb.Brightness.SetValue(int(brightness))
acc.Lightbulb.Saturation.SetValue(saturation)
acc.Lightbulb.Hue.SetValue(hue)
config := hc.Config{Pin: pin}
transport, err := hc.NewIPTransport(config, acc.Accessory)
if err != nil {
log.Info.Panic(err)
}
go func() {
transport.Start()
}()
hkLight = &HKLight{acc, transport, nil}
lights[light.ID()] = hkLight
acc.OnIdentify(func() {
timeout := 1 * time.Second
for i := 0; i < 4; i++ {
ToggleLight(light)
time.Sleep(timeout)
}
})
acc.Lightbulb.On.OnValueRemoteUpdate(func(power bool) {
log.Debug.Printf("Changed State for %s", label)
light.SetPowerDuration(power, transitionDuration)
})
updateColor := func(light common.Light) {
currentPower, _ := light.GetPower()
// HAP: [0...360]
// LIFX: [0...MAX_UINT16]
hue := acc.Lightbulb.Hue.GetValue()
// HAP: [0...100]
// LIFX: [0...MAX_UINT16]
saturation := acc.Lightbulb.Saturation.GetValue()
// HAP: [0...100]
// LIFX: [0...MAX_UINT16]
brightness := acc.Lightbulb.Brightness.GetValue()
// [HSBKKelvinMin..HSBKKelvinMax]
kelvin := HSBKKelvinDefault
lifxHue := math.MaxUint16 * float64(hue) / float64(HueMax)
lifxSaturation := math.MaxUint16 * float64(saturation) / float64(SaturationMax)
lifxBrightness := math.MaxUint16 * float64(brightness) / float64(BrightnessMax)
color := common.Color{
uint16(lifxHue),
uint16(lifxSaturation),
uint16(lifxBrightness),
kelvin,
}
light.SetColor(color, transitionDuration)
if brightness > 0 && !currentPower {
log.Debug.Printf("Color changed for %s, turning on power.", label)
light.SetPowerDuration(true, transitionDuration)
} else if brightness == 0 && currentPower {
log.Debug.Printf("Color changed for %s, but brightness = 0 turning off power.", label)
light.SetPower(false)
}
}
acc.Lightbulb.Hue.OnValueRemoteUpdate(func(value float64) {
log.Debug.Printf("Changed Hue for %s to %f", label, value)
updateColor(light)
})
acc.Lightbulb.Saturation.OnValueRemoteUpdate(func(value float64) {
log.Debug.Printf("Changed Saturation for %s to %f", label, value)
//.........这里部分代码省略.........
开发者ID:brutella,项目名称:hklifx,代码行数:101,代码来源:hklifxd.go
注:本文中的github.com/pdf/golifx/common.Light类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论