LinuxMCE Forums

General => Developers => Topic started by: WhateverFits on July 18, 2011, 07:06:32 PM

Title: New Onkyo device
Post by: WhateverFits on July 18, 2011, 07:06:32 PM
So, I recently picked up a new Onkyo receiver that has an Ethernet port instead of the serial. This makes it much easier to hook up to my LinuxMCE system but I now need to create the new device and I have two questions.

First, how can I copy the old device to a new one? All the same items apply and I was hoping to shortcut things a little bit.

Second, it appears that the same connection type can be used since it supports both serial and network connections but how do I send binary data? The string values are the same but there is a bunch of header/footer information that needs sent in a binary format.

Thanks!
Title: Re: New Onkyo device
Post by: merkur2k on July 19, 2011, 08:19:38 AM
there is no way to copy an existing template unfortunately, other than manually. and i dont think its possible to have a single template describe two connection methods.
while i have not done so myself, there should be a way to send hex values in ruby.
Title: Re: New Onkyo device
Post by: Marie.O on July 19, 2011, 10:26:22 AM
Hex works nicely, as the following OFF command for a JVC DLA projector shows

<$"\x21\x89\x01\x50\x57\x30\x0a"$>
Title: Re: New Onkyo device
Post by: WhateverFits on July 26, 2011, 07:34:16 AM
Thanks guys! I'll get that going and tested out on my system. Once I get it working properly, how do I go about submitting it? I've never had the privilege of adding a new device before.
Title: Re: New Onkyo device
Post by: purps on July 26, 2011, 10:29:00 AM
In web admin, go Advanced -> sqlCVS. Check in both DCE and IR repositories. Then, create a trac ticket that contains the sqlCVS Batch IDs, as well as your contact details (batch IDs can be found out here http://schema.linuxmce.org/sqlCVS/?site=batch/view). Think that's it.

Cheers,
Matt.
Title: Re: New Onkyo device
Post by: WhateverFits on January 16, 2012, 06:24:39 PM
OK, so after a brief hiatus, I'm back at work on this device. I have all the codes researched and configured (I wrote a Perl script to send these commands to my receiver) and have just created the device in LinuxMCE.

Here is the command I think I have it attempting to send for #192 On:
<$"ISCP\x00\x00\x00\x10\x00\x00\x0\x01\x00\x00\x00!1PWR01\x0D\r"$>

Here is the log entry generated:
05 01/16/12 9:17:48.395 GSDMessageTranslator isCmdImplemented = false <0xb58f0b70>
05 01/16/12 9:17:48.395 #### Pre-Process Queue = 1 <0xb58f0b70>
05 01/16/12 9:17:48.417 _QueueProc Pre - 994 : 0 <0xb76f3b70>
05 01/16/12 9:17:48.417 GSD-Sleep Pre 994 : 0 <0xb76f3b70>
05 01/16/12 9:17:48.417 Process Queue = 1 <0xb76f3b70>
01 01/16/12 9:17:48.417 For obscure reasons could not handle the message <0xb4eefb70>
05 01/16/12 9:17:48.669 GSD-Sleep Post 994 : 250 <0xb76f3b70>
05 01/16/12 9:17:48.669 _QueueProc Post - 994 : 250 <0xb76f3b70>


Now, how do I go about debugging this? I've tried
/usr/pluto/bin/MessageSend localhost 0 62 1 994
but that gives me nothing extra. Thanks!
Title: Re: New Onkyo device
Post by: tschak909 on January 16, 2012, 07:59:58 PM
Hello.

Could you post the contents of your /var/log/xx_Generic_Serial_Device.log, where xx is your device #.

The most common reason that this error occurs is that your device data is incorrect.

For ethernet devices, you need to make sure that the TCP Port device data is defined, and that the correct port is specified. You also need to make sure the device has an IP Address specified, so that it knows where to connect to the device.

-Thom
Title: Re: New Onkyo device
Post by: WhateverFits on January 18, 2012, 01:53:43 AM
Thanks Thom!

So, I forgot the TCP Port. I knew I was missing something there. I fixed it but I still got errors. I think I might have it working now. I made some changes to the selected checkboxes on the template. I'm at work right now so I can only monitor the logs. I'll test as soon as I get home.  :D
Title: Re: New Onkyo device
Post by: WhateverFits on January 18, 2012, 07:55:27 AM
Works great! Needed to do some bit fiddling to get it all working since I have to send binary commands. So far I have power on, off, and volume up, down working. As soon as I have something complete, I'll check it in.

Thanks again!

The next steps would be to get PNP working on this device.
Title: Re: New Onkyo device
Post by: stedaniels on January 18, 2012, 02:44:12 PM
Hi,

Out of interest, what receiver did you get?

Steve
Title: Re: New Onkyo device
Post by: WhateverFits on January 18, 2012, 09:11:25 PM
I got the NR609. I really like it.

http://www.us.onkyo.com/model.cfm?m=TX-NR609&class=Receiver&p=i (http://www.us.onkyo.com/model.cfm?m=TX-NR609&class=Receiver&p=i)
Title: Re: New Onkyo device
Post by: tschak909 on January 19, 2012, 12:33:28 AM
We really need some people to get together a nice simple tutorial on making GSD devices, as it really is simple, if you avoid the common mistakes.

-Thom
Title: Re: New Onkyo device
Post by: Marie.O on January 19, 2012, 12:06:04 PM
Just a small tidbit of information regarding network controlling receivers. All of the receivers I have looked at til now have one BIG problem when controlled via network. Their "standyby" power usage sky rockets from <1W when not using network controll or HDMI control, to >50W when using it. This is standby power usage. Just something to look out for.
/me is only using RS-232 controlled devices atm.
Title: Re: New Onkyo device
Post by: WhateverFits on January 19, 2012, 09:13:20 PM
I don't even know if I can turn off the network control. My unit does chew through some power in standby mode, that's for sure. My almost airtight cabinet gets warm even when in standby. I put a computer chassis fan on the back of my cabinet to ventilate due to this.

Yes, Thom, it was rather simple but there are a few "gotchas" along the way if you don't know no better. My biggest problems are getting my binary strings correct. The Onkyo network protocol is annoying to begin with and then having to properly escape all the non-printable characters is fun too!

I will most likely be done with this by this weekend so I would love to ask, any pointers on doing a DHCP auto-detect script for this? All I need is to find something that exists already that I can steal.

Thanks!
Title: Re: New Onkyo device
Post by: Marie.O on January 21, 2012, 01:24:46 PM
Look at the device template 54. It has autodetection for SqueezeBoxes using their MAC address
Title: Re: New Onkyo device
Post by: WhateverFits on January 25, 2012, 06:18:43 PM
Thanks Posde! Now I need to go find out the MAC ranges for these Onkyo devices. Google is my friend.

OK, now to add more work for this upcoming weekend. How do I get my orbiters to control it? I want the volume control to control the volume on the receiver and I can't create a media scenario because my Onkyo shows up in red when I attempt to add one. It also doesn't show up on the wizard when I'm trying to add it to my living room. I'm obviously missing something in the configuration but, for the life of me, I can't find it. :( I did manage to "resend codes" to it and get it do do various things.
Title: Re: New Onkyo device
Post by: iberium on July 16, 2012, 12:47:10 AM
Was the command that you said the correct one for power on:

ISCP\x00\x00\x00\x10\x00\x00\x0\x01\x00\x00\x00!1PWR01\x0D\r

I've been trying to work on a driver.  I actually was able to create a new driver by just adding the serial one, going into the a/v properties of it, and the viewing the template and renaming it.  It then was an exact copy with a new name.  I'm just wondering if this was the ruby command that you sent.

thanks
Title: Re: New Onkyo device
Post by: WhateverFits on July 16, 2012, 10:19:26 PM
Quote from: iberium on July 16, 2012, 12:47:10 AM
Was the command that you said the correct one for power on:

ISCP\x00\x00\x00\x10\x00\x00\x0\x01\x00\x00\x00!1PWR01\x0D\r

I've been trying to work on a driver.  I actually was able to create a new driver by just adding the serial one, going into the a/v properties of it, and the viewing the template and renaming it.  It then was an exact copy with a new name.  I'm just wondering if this was the ruby command that you sent.

thanks

The driver I created has been checked in and it should be available. Thom confirmed a few days ago that it was committed and it should be available for public consumption soon if not already. Given that, it looks right.
Title: Re: New Onkyo device
Post by: WhateverFits on March 08, 2013, 09:34:50 PM
I checked in my changes again for the auto-detect. My system burned down and I had to make these changes again and re-commit them. I'm still getting errors when I commit so if someone can take a look at that (Bug #1527) and get my changes committed, I would be very happy.
Title: Re: New Onkyo device
Post by: tschak909 on March 08, 2013, 09:46:02 PM
I'll look @ it tonight.

-Thom