Society of Robots - Robot Forum
Electronics => Electronics => Topic started by: Fr0stAngel on January 03, 2011, 12:42:08 PM
-
hi...i am currently working on home automation project using IR remote...i've had success so far, but the problem is that i worked on philips tv remote...i also happen to have a panasonic camcoder remote as shown in the link..
http://www.vcrremotecontrols.com/Mfrs/Panasonic/MscCamcorder/VSQW0038.htm (http://www.vcrremotecontrols.com/Mfrs/Panasonic/MscCamcorder/VSQW0038.htm)
this one is so much smaller and handy that i wanted to shift my code on it.I'm using ATMEL AT89S52 for the decoding and programming. The problem is that i donot know the protocol on which this camcoder remote works..!
can anyone help me regarding the IR protocol (i.e address, or command bits etc) of panasonic camcoder remotes??
Thanks! :D
-
Hi,
The problem is that i donot know the protocol on which this camcoder remote works..!
can anyone help me regarding the IR protocol (i.e address, or command bits etc) of panasonic camcoder remotes??
Too bad Google's broken... Oh, it isn't, you were just lazy ;)
Try the first link for starters (http://www.google.com/search?num=100&hl=en&safe=off&client=firefox-a&hs=3JH&rls=org.mozilla%3Aen-US%3Aofficial&q=panasonic+IR+remote+protocol&aq=f&aqi=&aql=&oq=&gs_rfai=).
-
i've already searched whole of go0gle... (or most of it ???)..and yes i had that page bookmarked too, but it shows the 'old panasonic protocol'....from what i know there are three panasonic protocols , the 'old' , panasonic1, and panasonic2. as far as i know the 'old' one works for tvs.....
well, better start programming my controller to work according to old protocol, i was thinking of skipping the address bit and only capturing the control bits.....lets see what that'll do. :-\
-------------------------------------------------------------------------------------------------------------------------------------------
There's one more issue.....the remote seems to send a small burst of output when i keep the button pressed, instead of a continuous stream...its making the decoding a bit difficult...
-
Start with code that reads the bit stream from the remote that outputs over the UART to your PC. Then you can decode the stream with help from the links you found.
check this link:
http://www.vecoven.com/elec/ir/ir.html (http://www.vecoven.com/elec/ir/ir.html)
-
Hi,
[...] it shows the 'old panasonic protocol'....from what i know there are three panasonic protocols , the 'old' , panasonic1, and panasonic2.
Do you at least know the frequency?
Do you have a device using this protocol, or did you just get the remote for its pocketable size?
There's one more issue.....the remote seems to send a small burst of output when i keep the button pressed, instead of a continuous stream...its making the decoding a bit difficult...
I'm not too familiar with the Panasonics and I may be confusing it with another protocol, but I guess it's one of the following 3 possibilities: Either it's the same code inverted every other transmission, the same code with different start bit(s) (not the AGC adjust bits), or a simpler "repeating the last code" command (which could be the same for each repeating key).
A logic state analyzer or at least a 'scope would tell you, but since you ask, you probably don't have either.
If you have a gizmo it can control, or just a receiver (or even a photodiode and a transistor amplifier), make a sampling program (preferably of the compression type), sample all the commands with and without repeat keys and perhaps another program to analyze and group the results. It should be a brief job with such small remote - I used that method to decode the B&O (455kHz!) IR remote protocol some ten years ago via the game port on an old '386 in an afternoon (and we're talking hundreds of codes here).
If you just wanna use the buttons on the remote and have no plans of changing to a larger set of buttons, just look at what differs between the codes and use that (=less overhead).
-
hi,
it turned out that all i needed was this:
http://www.ostan.cz/IR_protocol_analyzer/ (http://www.ostan.cz/IR_protocol_analyzer/)
its a software that shows you the IR output of any remote control, via your sound card :D
and the hardware is easy to implement too.
so, based on this, one of my mini remotes uses a protocol similar to NECS-80, so i'm currently working on software decoding for it.
i'll post the circuit and the code once i'm completely done with it.
regards.
M!