Quick background, I’m trying to get the F2 template to apply to my Windward IV 52 in. Indoor LED Oil Rubbed Bronze Ceiling Fan with Dimmable Light Kit, Remote Control and Reversible Motor ceiling fan. This is Fan Remote Model: HD3 with FCC ID: 2AAZPHD3. The Bond app won’t offer me the F2 template regardless of what I do, so I’m trying to use the API to create the device instead by sending a POST request to /v2/devices.
The issue I’m running into is finding the right values for the properties. In other posts on the forum, it’s noted that to create a device you need to know the addr, bps, zero_gap, and freq.
I know the freq is either 304150 or 304250 and bps is 40000. But I don’t have values for addr, or zero_gap.
I tried to look up the addr and zero_gap for my manually set up fan from the /devices/deviceID/properties endpoint, but it just gives me
{
"max_speed": 2,
"trust_state": false,
"_": "b17cd87a",
"__": "b17cd87a"
}
As you can see, no addr, bps, and zero_gap, or freq shared.
When I look up a command via API, then use that to look up a signal, I get a little more info, but still no addr or zero_gap.
{
"freq": 304150,
"bps": 40000,
"deviation": 0,
"reps": 1,
"modulation": "OOK",
"encoding": "hex",
"data": "F80000000FFFF8........
Can anyone help me figure out how to get the missing addr
and zero_gap
values? Thanks in advance!
Is addr
just the pips sequence in the remote? If so, how would I reflect the pips in the attached remote picture?
Here is my device create call so far - like I said, addr and zero_gap are just dummy values taken from other posts on this forum:
{
"name": "testfan",
"type": "CF",
"template": "F2",
"location": "My Room",
"properties": {"addr": "1111", "bps": 40000, "zero_gap": 30, "freq": 304150}
}