Wired remote for Pioneer HU


Closed Thread
Results 1 to 23 of 23

Hybrid View

  1. #1
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default Re: Wired remote for Pioneer HU

    Thanks You so much for support ! Are some thinks I dont understand (too ...) ...
    1. I dont use MPASM in code.
    2. My astonishment it's about non-function of this hardware ! If I connect JUST the resistor on jack, the HU react ! If I use same resistor -via optocoupler - the HU react ! But with PIC, dont !
    I increased the time for each tris command, but without results !
    Code:
    case 1     ; volume down    
     trisb.2=0
    Pause 5000 ; I try even with this huge pause !
    trisb.2=1
    ...
    endcase

  2. #2
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default Re: Wired remote for Pioneer HU

    I am not familiar with the HU, but if you post the current hardware schematic (PIC, opto, HU) someone may be able to spot the problem.
    Dave
    Always wear safety glasses while programming.

  3. #3
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default Re: Wired remote for Pioneer HU

    So...with schematic from post #1 - no results !
    With a simple resistor - good results ; with optocouplers - good results too.
    Attached Images Attached Images   
    Last edited by fratello; - 28th May 2012 at 18:57.

  4. #4
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default Re: Wired remote for Pioneer HU

    ...and how an "original" remote work :
    Attached Images Attached Images  

  5. #5
    Join Date
    Oct 2005
    Location
    Sweden
    Posts
    3,621


    Did you find this post helpful? Yes | No

    Default Re: Wired remote for Pioneer HU

    Hi,
    I haven't studied this thread in detail but if the idea is to "place a resistance" across the plug then I don't think you can run the same code (if that's what you're doing) with the two different hardware designs. When using the circuit with the opto-isolators you drive the PIC-pin high in order to turn on the opto-isolator and connect the associated resistor across the plug - and if I read your posts correct this works fine.

    It's not exactly clear to me how the plug is connected to the circuit in post#1 but it looks to me as if this circuit doesn't work the same way as the one with the opto-isolators. So, if you're trying to run the same code with the two circuits my guess is that's where your problem is.

    /Henrik.

  6. #6
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default Re: Wired remote for Pioneer HU

    Thanks for support, Mr.Henrik !
    When I switch to optocouplers, I changed code :
    Code:
    case 1     ; volume down      
    Portb.2=1 
    Pause 100   
    Portb.2=0
    My "sources of inspiration" was here : http://www.panuworld.net/minidisc/fordsony/index.htm & http://www.fiatforum.com/marea/29682...-finished.html
    Last edited by fratello; - 29th May 2012 at 06:47.

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts