sorry for this question, but I am confused on some of the technical infos I find here.
I have a Blaupunkt car DVD player (IVDP-01). The remote is lost and connot be delivered any more. With the help of an universal remote, I found it uses NEC v1 IR protocol. I did an arduino IR sender and receiver and found many codes I can use to control the DVD player.
Now I could build a remote using some tiny arduino, a keypad, a step-up converter and a housing, but that would not look that pretty. The arduino app I wrote is able to send all commands for the DVD using a serail terminal connection to the arduino. But that solution is not usable in a car (a laptop cabled to an arduino box). javascript:emoticon(':(')
Then I baught a Logitech Harmony 300. Unfortunately this remote does alter the learned codes. The codes are changed to similar IR codes in a database at myharmony.com. The IR commands are sent twice or more. Although logitech support was a bit helpful in changing the databse for the DVD player codes, they only changed some of them. I again contacted them to change all codes, they again changed only parts. I gave up with Logitech.
I realized the JP1 remotes and hopefully they only send what I define.
I baught a RCA RCRP05B and now I would like to build a connector cable. I see that most use a pre-made FTDI cable, but I already have a FTDI USB board (http://jeelabs.com/products/usb-bub and http://moderndevice.com/product/usb-bub-ii/).
In various posts here I see some connection instractions, but I am unsure on how to connect the JP1.3 pins to the BUB board:
Code: Select all
JP1 pin definitions:
1 - VCC(U1) (leave unconnected if using batteries)
2 - VCC(U2) (leave unconnected if using batteries)
3 - GND
4 - SDA (U2 data input/output)
5 - input to U1 (unknown function)
6 - SCL (U2 clock)
USB-Serial connection (FTDI):
JP 1.2/1.3 RS232
VDD 1 -
RST 2 <- 7 RTS
GND 3 -- 5 GND
RX 4 <- 3 Tx
nc 5 -
TX 6 -> 2 Rx (Pullup 4k7 to [4] DTR)
4 DTR (PullUp to [2])
see FT230X Interface.pdf:
JP 1.2/1.3 FTDI
VDD 1 -
RST 2 <- RST/RTS/DTR
GND 3 -- GND
RX 4 <- TX
nc 5 -
TX 6 -> RX
Yes, I know and may easier to use one of the semi prebuilt cables, but I would like to use my existing stuff. I am also a hardware guy.
thanks for your help
Josef