pretty interesting link.
pretty interesting link.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
thanks for the reply's, its a start...
The amp is a denon avr-1602.
Whats the link for bruces website?
Bruce's website
http://www.rentron.com/remote.htm
Ohm it's not just a good idea... it's the LAW !
Doesn't your amp have video inputs? I saw the specs and it has 3 composite and 3 S-Video on the back and 1 Composite on the front. So?
Ioannis
Last edited by Ioannis; - 9th October 2006 at 08:50.
I just finish my. using part of this proyect.
h t t p : //www.web-ee.com/Schematics/VSwitch/vswitch.htm
the only part i change was the software, i use some ir RC5 library from this book Experimenting with the PicBasic Pro compiler.
h t t p : //developersbooks.com/ebooks/viewbook/38/17/1.html
now im working to add some OSD.
i hope this help.
I am sorry to say that I do have this book, it was my first one about PicBasic Pro, and there are no RC5 routines in it. Unless there is a new edition and they have been included. Can you check that?Originally Posted by cesarman
I have been looking for an easy to use RC5 library and haven't found any.
Thanks in advance
Carpe Diem
mmm, sorry you rigth only for sony protocols. no RC5, well the only basic compiler is proton. Version 3.X, has RC5 fuction. Tested
Example
Device = 16F877
RC5IN_PIN = PORTC.0 ' Choose the port and pin for the infrared sensor
DIM RC5_WORD as WORD ' Create a WORD variable to receive the data
DIM RC5_COMMAND as RC5_WORD.Lowbyte ' Alias the COMMAND byte to RC5_WORD low byte
DIM RC5_SYSTEM as RC5_WORD.Highbyte ' Alias the COMMAND byte to RC5_WORD high byte
ALL_DIGITAL = ON ' Make all pins digital mode
Cls ' Clear the LCD
While 1 = 1 ' Create an infinite loop
Repeat
RC5_WORD = RC5In ' Receive a signal from the infrared sensor
Until RC5_COMMAND<> 255 ' Keep looking until a valid header found
Print at 1,1,"SYSTEM ",Dec RC5_SYSTEM," " ' Display the SYSTEM value
Print at 2,1,"COMMAND ",Dec RC5_COMMAND," " ' Display the COMMAND value
Wend
Bookmarks