|
本帖最后由 ptlzx 于 2018-4-23 09:13 编辑
1、如何录制空调温度码
空调遥控器上有开关,温度上下调整,风力大小这些。但如何录制具体的温度(比如18度)的遥控码,遥控都没有18度这么一个按钮。
2、如何定义多个设备开关
config.json中可以自定义开关,我定义两个Custom段,代码检测通过,执行就出错,一个就可以。日志显示:Type Error: Cannot read property 'indexOf' of undefined
{
"type": "Custom",
"ip": "192.168.31.xx",
"token": "xxx",
"Name": "Custom-1",
"data": {
"on": {
"0": "0|xxx",
"1": "2|xxx",
"2": "5|xxx"
},
"off": {
"0": "1|xxx"
}
}
},
{
"type": "Custom",
"ip": "192.168.31.xx",
"token": "xxx",
"Name": "Custom-2",
"data": {
"on": {
"0": "0|xxx",
"1": "2|xxx",
"2": "5|xxx"
},
"off": {
"0": "1|xxx"
}
}
},
|
|