Sky Q Box (RC6-6-28)
Moderator: Moderators
-
vickyg2003
- Site Admin
- Posts: 7104
- Joined: Sat Mar 20, 2004 12:19 pm
- Location: Florida
- Contact:
I called called away before I had a chance to post my edit, and I see that you already answered that. Isn't the double wide in the fixed data. So we have 1 command that needs to be unpacked into 10 for 1 and 01 for 0, then we need to
For the first 2 bits of the command data we unpack
and then set bit3 to 1
OR it with the next to last byte of the device data.
Then unpack the next 4 bits
put them in the last device data byte
Then unpack the last two bits
load them in the upper nibble of the command byte
the lower nibble of the command byte would be 0,
shorten the lead out time by 4*445
Right?
For the first 2 bits of the command data we unpack
and then set bit3 to 1
OR it with the next to last byte of the device data.
Then unpack the next 4 bits
put them in the last device data byte
Then unpack the last two bits
load them in the upper nibble of the command byte
the lower nibble of the command byte would be 0,
shorten the lead out time by 4*445
Right?
Remember to provide feedback to let us know how the problem was solved and share your upgrades.
Tip: When creating an upgrade, always include ALL functions from the oem remote, even if you never plan on assigning them to a button. Complete function lists makes an upgrade more helpful to others.
Tip: When creating an upgrade, always include ALL functions from the oem remote, even if you never plan on assigning them to a button. Complete function lists makes an upgrade more helpful to others.
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
If you bit double in advance, then yes, the double wide pair is in the fixed data. The first 4 bits are 1110, so that becomes 10101001 and then the double wide pair is 0011, followed by the rest of the data. I thought you were suggesting that we could just pass the device codes into a bi-phase executor, because if we did that, we'd lose the double wide pair.
Thw way John bit doubles is:
Thw way John bit doubles is:
- rotate the 1st byte left thru carry
- rotate the 2nd byte left thru carry (so the bit from the first byte comes into the 2nd byte)
- rotate a scratch byte left thru carry (bringing in a bit from the 2nd byte)
- add 1 to scratch byte (so 0 becomes 01 and 1 becomes 10)
- rotate 1st byte left thru carry (bringing in a bit from the scratch byte)
- add scratch byte to itself (which is like a rotate left, except it rotates in a zero)
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
-
alanrichey
- Expert
- Posts: 3533
- Joined: Mon Mar 24, 2008 7:14 am
- Location: UK/USA
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
Lol, yeah Alan, I wasn't calling you, but there are several other experts here who know a thing or two about executors.alanrichey wrote:Gone way beyond my level of understanding I'm afraid. You lost me after 'Good morning"
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
-
vickyg2003
- Site Admin
- Posts: 7104
- Joined: Sat Mar 20, 2004 12:19 pm
- Location: Florida
- Contact:
Alan, is there a STOP command? Play/Pause/Rewind usually would have a STOP.
I have 32 commands, are there more than that?
I have 32 commands, are there more than that?
Remember to provide feedback to let us know how the problem was solved and share your upgrades.
Tip: When creating an upgrade, always include ALL functions from the oem remote, even if you never plan on assigning them to a button. Complete function lists makes an upgrade more helpful to others.
Tip: When creating an upgrade, always include ALL functions from the oem remote, even if you never plan on assigning them to a button. Complete function lists makes an upgrade more helpful to others.
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
There doesn't appear to be a STOP button, take a look...
http://storage.sky.com/productpages-115 ... e-flat.png
http://storage.sky.com/productpages-115 ... e-flat.png
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
I found this which explains the buttons...
http://www.sky.com/help/articles/button ... -explained
The three buttons at the bottom of the wheel are:
1. DISMISS - exit menus and stop play on recordings
2. HOME - home screen
3. SIDEBAR - this is the 3 dots button
http://www.sky.com/help/articles/button ... -explained
The three buttons at the bottom of the wheel are:
1. DISMISS - exit menus and stop play on recordings
2. HOME - home screen
3. SIDEBAR - this is the 3 dots button
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
-
vickyg2003
- Site Admin
- Posts: 7104
- Joined: Sat Mar 20, 2004 12:19 pm
- Location: Florida
- Contact:
When I started this, my computer hung up and I had to reboot. My com port on irscope changed. When I fixed it I didn't see that the hardware had changed too!!!! Gave me nonsense in my readings over and over. I thought it was a Protocol Flag error. When it was nothing at all. Chased my tail all afternoon..... I wish I had seen the irscope setting problem earlier.
When I started over, I went with a two byte command, no assembler. I did my tests with the HCS08 protocol, but since there is no assembler involved this should work no problem with the Slingbox too. Give it a try.
http://www.hifi-remote.com/forums/dload ... e_id=13970
When I started over, I went with a two byte command, no assembler. I did my tests with the HCS08 protocol, but since there is no assembler involved this should work no problem with the Slingbox too. Give it a try.
http://www.hifi-remote.com/forums/dload ... e_id=13970
-
alanrichey
- Expert
- Posts: 3533
- Joined: Mon Mar 24, 2008 7:14 am
- Location: UK/USA
-
vickyg2003
- Site Admin
- Posts: 7104
- Joined: Sat Mar 20, 2004 12:19 pm
- Location: Florida
- Contact:
Yes they are in that ordeer. I updated the file with those corrected labels.alanrichey wrote:Thanks Vicki, I'll push it out for test. Just a couple of problems:
1. You have 2 'Play' and 2 'Fast Forward' ?
2. No 'Info' and no 'Help'. Are those the duplicate Play/Ffwd ?
Al
What category does this belong in?
Swarez, if you know how to create a Bin from an RDMU (quite easy) go for it, otherwise wait for Alan to do it later today.swarez wrote:Guys I'm a novice to this but I've been searching for a sky q remote to work with Slingbox. Is this file the final product and can i go ahead and try it?
The next step to making the file into the final product will be for someone to
a - shoot it from a SC380 processor (the kind in the sling) and see what comes out
and
b - shoot it at the Sky Q Box, and see if it operates the box
You can be a great help by doing the part by testing the Bin and posting back. Feedback is really important in this process, and it is really hard to get that from the end users.
Remember to provide feedback to let us know how the problem was solved and share your upgrades.
Tip: When creating an upgrade, always include ALL functions from the oem remote, even if you never plan on assigning them to a button. Complete function lists makes an upgrade more helpful to others.
Tip: When creating an upgrade, always include ALL functions from the oem remote, even if you never plan on assigning them to a button. Complete function lists makes an upgrade more helpful to others.
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
I see what you did there Vicky, very clever. When I first saw your fixed data, I wondered why there was an extra "C" in front, but I see that you carved out some of the leadin pair to make another double wide pair, which re-aligned the bytes so that the command code takes up all 16 bits of the final 2 bytes, rather than being spread across 3 bytes.
Last edited by The Robman on Mon Mar 07, 2016 8:08 pm, edited 1 time in total.
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
-
alanrichey
- Expert
- Posts: 3533
- Joined: Mon Mar 24, 2008 7:14 am
- Location: UK/USA
Vicky built this to match a Nevo C2. Did you make the changes necessary for a Slingbox ?swadez wrote:Tried creating the bin file but no activity on the slingbox. It does accept the code but none of the remote functions work. In fact the end remote is not even letting me click forward rewind etc. Only buttons clickable are the digit keys and channel up down.
My draft release is at http://www.hifi-remote.com/forums/dload ... e_id=13971 So please test that.
-
alanrichey
- Expert
- Posts: 3533
- Joined: Mon Mar 24, 2008 7:14 am
- Location: UK/USA
Hi Vicky. I can do this part. It doesn't decode as it did before, not sure if you would expect that ? The ICT file for most of the buttons (I have to crawl on the floor to do this and I am getting too old for that) is at http://www.hifi-remote.com/forums/dload ... e_id=13972vickyg2003 wrote:a - shoot it from a SC380 processor (the kind in the sling) and see what comes out