Hi all,
As i am progressing at quite a good pace with integrating home assistant to automate my home from heat pumps, to lights, to Siemens PLC’s but now i hit a snag.
I have a RFXtrx433E to control my applicable RF appliances which works like a charm expect for my TV-lift! i got it to work without issues using the RFXmngr in which the pulse timing seemed quite critical.
What i did so far is capture the signal by automatically add which results in a detection which matches the raw signal in RFXmngr.
Detected as: Switch: PT2262 cc1231 & 3 (up and down)
RFXmngr captures the raw signal as:
10-2-2025 02:24:06:872= 09130007CC1232015850
Packettype = Lighting4
subtype = PT2262
Sequence nbr = 7
Code = CC1232 decimal:13374002
S1- S24 = 1100 1100 0001 0010 0011 0010
Pulse = 344 usec
Signal level = 5 -80dBm
Re-sending this command with a pulse timing of 300 usec worked like a charm every time.
So i convert these values to HEX
- Down (
1100 1100 0001 0010 0011 0010
) → Hex: `CC1232 - Up (
1100 1100 0001 0010 0011 0001
) → Hex: `CC1231
Now i can send it on the events page under development tools: (down as example)
service: rfxtrx.send
data:
event: 09130000CC1232
Nothing happens…, debug log shows the following:
DEBUG (SyncWorker_3) [RFXtrx] Send: 0x09 0x13 0x00 0x00 0xcc 0x12 0x31
Does anyone have any idea how i can make this work?