Rfxtrx - TV lift - detected but not working

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?

The correct code to use in HA is displayed in the latest version of RFXmngr:
13-2-2025 10:02:48:080= Lighting4 command: 09 13 00 03 CC 12 32 01 2C 00
HA code:09130003CC1232012C00

Thank you for your response, forgot to mention i also tried the even code:

service: rfxtrx.send
data:
event: 09130003CC123101FA00

Unfortunately with the same result → not working

That code will not operate as it has a pulse time of 506 while you need 300

Simulate: 09130003CC123101FA00

14-2-2025 09:40:09:974= 09130003CC123101FA00
Packettype = Lighting4
subtype = PT2262
Sequence nbr = 3
Code = CC1231 decimal:13374001
S1- S24 = 1100 1100 0001 0010 0011 0001
Pulse = 506 usec

Use this code:
14-2-2025 09:42:35:639= 09130003CC1232012C00
Packettype = Lighting4
subtype = PT2262
Sequence nbr = 3
Code = CC1232 decimal:13374002
S1- S24 = 1100 1100 0001 0010 0011 0010
Pulse = 300 usec