Hi,
Firs of all, this is my first question and need to say you at HA do a gread job. I.m not a developer, but with some communit help I did lots of integrations at my home, I appreciate this, simple things.
I use HA with broadlnk to control several items, some from Broadlink (TC2), some old with remote controlers learned by Broadlink RM or Mini.
I Start to use Homekit this week, most of things are easy solved, but the Fans have problems.
Homebridge broadlink component only accepts ON/OFF Keys, but before I use Homekit I have it working in a Homebridge PI system.
I learn all commands at broadlink
`switches:
ventilador_light_q:
friendly_name: "Bedroom"
command_on: 'JgBo...'
command_off: 'JgBo.......
ventilator_power_q:
friendly_name: "Bedroom Ventiladtr"
command_on: 'JgBoAAA...'
command_off: 'JgBoAAA....'
ventilator_level_1_q:
friendly_name: "Bedroom level 1"
command_on: 'JgBoAAA...'
command_off: 'JgBoAAA...'
vententilaTor_level_2_q:
friendly_name: "bedroom level 2"
command_on: 'JgBoAAA....'
command_off: 'JgBoAAA....'
vententilator_level_3_q:
friendly_name: "bedroom level 3"
command_on: 'JgBoAAAB....'
command_off: 'JgBoAAA.....'
vententilator_reverse_q:
friendly_name: "Bedroom reverse"
command_on: 'JgBgAAA...'
command_off: 'JgBgAAA...'
`
If helps, when mapped at home bridge I used the code below, works gread with home app
`"name": "Bedroom Ventilator",
"type": "fan",
"host": "aa:aa:aa...",
"data": \{
"on": "260068...",
"off": "260068",
"clockwise": "2600600....",
"counterClockwise": "2600600....",
"fanSpeed10": "260068....",
"fanSpeed20": "260068000...",
"fanSpeed30": "260068000....",
"fanSpeed40": "2600680000",
"fanSpeed50": "2600680000",
"fanSpeed60": "260068000001...",
"fanSpeed70": "2600680000....",
"fanSpeed80": "260068000001",
"fanSpeed90": "26006800000",
"fanSpeed100": "2600680000012"
\}\
\},\
\{\`
With homebridge I can get all features, like speed, revert direction, etc, at homebridge and also Apple Home recognize it as a Fan.
Is there any way to do something lik I had at homebridge using Homekit at HA?
Thanks again for your help.