How to create new serial code in the DDK?

Hi

have anyone who can instruct me for how to create new serial device in the DKK ? or give me a example demonstrates page as below .

device name = Lighting controller
9600,N,8,1
ALL ON code = AE 00 47 1F 1F AC
ALL OFF code = AE 00 47 00 00 AC

Thanks
Huang

The Onkyo Sample Receiver Commands .VOLUME SET example in the DDK is what you want. It’s formatted exactly as shown there:

\xAE\x00\x47\x1F\x1F\xAC

roomieremote.com/faq/#customDevice

Thank you.