作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 HomeKit 我的代码是
HMAction *myAction = [[HMCharacteristicWriteAction alloc]
initWithCharacteristic:[[lightBulbService characteristics] objectAtIndex:0] targetValue:characteristicValue];
最佳答案
目标值取决于您正在编写的特征。灯泡可能支持诸如
HMCharacteristicTypeHue
- 整数 0-360(度)HMCharacteristicTypeSaturation
- 整数 0 - 100(百分比)HMCharacteristicTypeBrightness
- 整数 0 - 100(百分比)。 HMCharacteristicTypePowerState
- bool 开或关。 HMCharacteristicTypePowerState
.其他的可能没有。灯泡还可以支持制造商定义的其他特性 - 例如,闪光灯可能支持“闪烁率”特性。
关于ios - HMCharacteristicWriteAction 为 targetValue 传递什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27164143/
在 HomeKit 我的代码是 HMAction *myAction = [[HMCharacteristicWriteAction alloc] initWithCharacteristic:[[l
我正在尝试更新操作的目标值 (HMCharacteristicWriteAction),但它总是因 EXC_BAD_ACCESS(code=1,address=0x50)而崩溃。 我的代码片段: pr
我是一名优秀的程序员,十分优秀!