Vidpro EBRA-121R remote controlled pan and tilt head.
Moderator: Moderators
Vidpro EBRA-121R remote controlled pan and tilt head.
Hi to all. This link is to the file I posted in the diagnostic area.
http://www.hifi-remote.com/forums/dload ... le_id=5478
This pan and tilt head is pretty inexpensive ($80-$99). It fits on a tripod and holds a camcorder. The remote, in addition to the pan and tilt commands, has a switch to pick one of three brands of camcorders (Sony, Canon, Panasonic) to control the zoom. Basically, this file has the up and down keys for the tilt, and the left and right keys for the pan. The stop key is for the auto-pan/stop function. The vol up and down are for the zoom in and out (I used Canon). They already have the Canon codes decoded. I don't have Excel or I would take a stab at using Protocol Decoder (I tried it with Open Office but the macros won't work). Thank you in advance for all your help and I look forward to more contributions to this great forum!
http://www.hifi-remote.com/forums/dload ... le_id=5478
This pan and tilt head is pretty inexpensive ($80-$99). It fits on a tripod and holds a camcorder. The remote, in addition to the pan and tilt commands, has a switch to pick one of three brands of camcorders (Sony, Canon, Panasonic) to control the zoom. Basically, this file has the up and down keys for the tilt, and the left and right keys for the pan. The stop key is for the auto-pan/stop function. The vol up and down are for the zoom in and out (I used Canon). They already have the Canon codes decoded. I don't have Excel or I would take a stab at using Protocol Decoder (I tried it with Open Office but the macros won't work). Thank you in advance for all your help and I look forward to more contributions to this great forum!
-
The Robman
- Site Owner
- Posts: 21888
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
Here's some info that might help someone with PB...
freq = 41.8 khz
0 = +500 -1500
1 = +1500 -500
leadin: n/a
leadout: +500 -16000
010101010101 001100000000 stop
010101010101 000011000000 right
010101010101 000000110000 left
010101010101 000000001100 up
010101010101 000000000011 down
freq = 41.8 khz
0 = +500 -1500
1 = +1500 -500
leadin: n/a
leadout: +500 -16000
010101010101 001100000000 stop
010101010101 000011000000 right
010101010101 000000110000 left
010101010101 000000001100 up
010101010101 000000000011 down
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!
Code: Select all
0101 0101 0101 0011 0000 0000 0 stop - 30 00
0101 0101 0101 0000 1100 0000 0 right - 0C 00
0101 0101 0101 0000 0011 0000 0 left - 03 00
0101 0101 0101 0000 0000 1100 0 up - 00 C0
0101 0101 0101 0000 0000 0011 0 down - 00 30
2 byte var data - 13 bits
2 byte fixed data - 12 bits - 55 50
1 = +1560 -520
0 = +520 -1560
LO = 14600
LO as total: NO
Upgrade protocol 0 = 01 A3 (S3C8+) Custom Protocol for Vidpro EBRA-121R
3B 80 22 8B 15 8A 01 08 08 03 0C 00 F0 01 04 02
F8 1C 84 FF FF FF FF 04 FF 05 8D 01 46
End
Upgrade Code 0 = 0C 2C (CBL/1068) Test Vidpro EBRA-121R
A3 00 61 55 50 30 00 0C 00 03 00 00 C0 00 30
End
-
The Robman
- Site Owner
- Posts: 21888
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
Isn't there an option in the IR engine to say that every bit in the command should be doubled (ie, follow each 1 with another 1 and each 0 with another 0), which would let you reduce the OBC to 6 bits.
I think there's also an option that would let you follow each 0 with a 1 in the device code bytes.
I think there's also an option that would let you follow each 0 with a 1 in the device code bytes.
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!
You should be able to edit RM's protocols.ini and add
and you should then be able to select this protocol.
Code: Select all
[VidPro]
PID=01 A3
FixedData=55 50
Code.S3C80=3B 80 22 8B 15 8A 01 08 08 03 0C 00 F0 01 04 02 F8 1C 84 FF FF FF FF 04 FF 05 8D 01 46
The function codes are what I listed in my previous post. I also had a sample device upgrade that I used to test with. When you say it doesn't work. Can you provide more details? At what step is it failing? Once you have an RMDU file, you have to export the Slingbox BIN file. After that, you have to insert it into the slingbox and then select that remote type from the Sling UI.
Hi. I exported the bin file to the slingbox. I get the remote with the five function buttons. Clicking on the buttons sends a signal but no response from the Vidpro. Please check my Rmdu file. I posted it here:
http://www.hifi-remote.com/forums/dload ... le_id=5483
Thanks!
http://www.hifi-remote.com/forums/dload ... le_id=5483
Thanks!
Following Rob's suggestions on bit doubling, I went back into PB and generated this:
Code: Select all
1010 1010 1010 1100 1111 1111 stop - BC
1010 1010 1010 1111 0011 1111 right - DC
1010 1010 1010 1111 1100 1111 left - EC
1010 1010 1010 1111 1111 0011 up - F4
1010 1010 1010 1111 1111 1100 down - F8
freq: 41.8khz
Fixed Dev Data: 6 bits - FC
Dev Bit Doubling: '0' after every '1' bit
Var Data: 6 bits
Cmd Bit Doubling: Double every bit
1: +520 -1560
0: +1560 -520
LI: n/a
LO: 16120
LO as total: NO
LO: 2 = [OneOn, -LO]
Upgrade protocol 0 = 01 A3 (S3C8+) Custom Protocol for Vidpro EBRA-121R
3B 80 11 8B 0F 85 C1 0D 06 06 01 04 02 F8 03 0C
00 F0 1F 7C 8D 01 46
End
Upgrade Code 0 = 0C 2C (CBL/1068) Vidpro EBRA-121R
A3 00 61 FC BC DC EC F4 F8
End
You should be able to do the same. Edit protocols.ini:
The line is shorter than the previous one.
Then in RM, set device 0: 252 so that Fixed Data: FC. Function codes are 1 byte as listed above: BC, DC, EC, F4, F8.
Code: Select all
[VidPro]
PID=01 A3
FixedData=FC
Code.S3C80= 3B 80 11 8B 0F 85 C1 0D 06 06 01 04 02 F8 03 0C 00 F0 1F 7C 8D 01 46
Then in RM, set device 0: 252 so that Fixed Data: FC. Function codes are 1 byte as listed above: BC, DC, EC, F4, F8.