IR_Translate Help

Posted by: matthew_k

IR_Translate Help - 09/10/2005 22:04

The back story: A couple years ago I got a Parrot bluetooth car kit. It's great, can't imagine how I ever drove without it. If you've got a manual transmission and ever talk on the phone while driving, you need one. It's wired up so that it's output goes into aux input. In the old setup, the mute line went high, it switched to aux, the mute line went low, it switched back to the player. Simple enough.

A few months ago I got a tuner and plugged it in. Everything works fine, except that it returns me to the player instead of the tuner after I get a call while listening to the radio.

This finally bugged me enough that I started trying to fix this a few days ago. It seems simple enough, but I suspect I'm missing something simple. Here's the current ir_translate section that isn't working. For testing, the right front panel button is mute on, the left is mute off.


[ir_translate]
;@AC 00000002.T=00b9461D ; right button in tuner = kw tape (aux)
;@AC 00000004.N=00b9461C ; left button no shifted = kw tuner (tuner)

;@AC 00000002.M=00b9461D.S ; right button in player = kw tape(aux), shifts
;@AC 00000004.S=00b9461E.S ; left button shifted = kw CD(player), unshifts

The problem seems to lie with the shifting. It always takes me back to the tuner, or the player if I mix things up with wich one shifts. What am I missing?

Matthew
Posted by: matthew_k

Re: IR_Translate Help - 09/10/2005 22:34

More testing, proving I don't understand shifting:

;@AC 0020df00=voldown,null.S ; rio 1 null shifts
;@AC 0020df01=00b9461E ; rio 2 = kwnd CD (mp3)
;@AC 0020df02=00b9461C ;rio 3 = knwd tuner (tuner)

;@AC 0020df02.S=00b9461E ; rio 3 = kwnd CD (mp3)
;@AC 0020df01.S=00b9461C ;rio 2 = knwd tuner (tuner)

To mean, this means that the Rio 1 button should swap the meaning of rio 2 and 3. The volume down is just to check that the button press is going through. Needless to say, this doesn't swap them, they always maintain their unshifted meaning.

Matthew
Posted by: Shonky

Re: IR_Translate Help - 10/10/2005 11:23

Without checking any of your actual codes are you sure you want ;@AC and not ;@DC on each line? I assume you want this to work in the car?

Perhaps your DC socket is stuffed and always reading AC or you force Hijack to AC for some other reason. However for a normal fully functioning empeg I'm pretty certain you'll want ;@DC on each line

HTH
Posted by: matthew_k

Re: IR_Translate Help - 10/10/2005 15:24

These are just for testing the codes out without having to run out to the car every time. I put the AC there so it still works in the car so I can still grab it and use it. Eventually instead of using the right and left front panel buttons I'll be using the mute line to trigger them.

Matthew
Posted by: mlord

Re: IR_Translate Help - 11/03/2006 14:29

This has all now been made simpler with Hijack v445 --> see the thread in General for details on that.

But while I'm in here, it should be pointed out that hex codes are just so passé..
Quote:

[ir_translate]
;@AC 00000002.T=00b9461D ; right button in tuner = kw tape (aux)
;@AC 00000004.N=00b9461C ; left button no shifted = kw tuner (tuner)
;@AC 00000002.M=00b9461D.S ; right button in player = kw tape(aux), shifts
;@AC 00000004.S=00b9461E.S ; left button shifted = kw CD(player), unshifts


The above (working or not), can be expressed more simply as:
Quote:

;@AC Right.T=Aux
;@AC Left.N=Tuner
;@AC Right.M=Tape.S
;@AC Left.S=CD.S


Cheers