Translating output from RF433any to use in RC-Switch

So, after a bit of trying I found my mysterious device sends the control code (as presented by RF433Any):

Received 24 bits (x3): 18 eb 46

rf.register_Receiver(
	RFMOD_TRIBIT, // mod
	65535, // initseq
	0, // lo_prefix
	0, // hi_prefix
	0, // first_lo_ign
	320, // lo_short
	958, // lo_long
	0, // hi_short (0 => take lo_short)
	0, // hi_long  (0 => take lo_long)
	960, // lo_last
	3788, // sep
	18  // nb_bits
);

Or, in different terms,

    Decoded: yes, err: 0, code: T, rep: 1, bits: 17, data: 00 31 d6 I=0, LS=320, LL=956, HS=0, HL=0, S=0, U=0, V=0, Y=0, Z=320

So far, so fine.
But I really don't know how to put that into a format RC Switch understands. Any link to a tutorial, or friendly help?
Thanks

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.