Page 2 of 7 FirstFirst 1234567 LastLast
Results 11 to 20 of 62

Thread: controlling winamp volume

  1. #11
    Constant Bitrate
    Join Date
    Mar 2007
    Location
    manchester, UK
    Posts
    145
    yep, i'm using winamp 2.95 (this too was on an old post). I'll have a good play tonight to see what's what.

    i'll give the dragging of the target a go. will it matter that i am developing on my home pc, rather than my carputer?

  2. #12
    Fusion Brain Creator 2k1Toaster's Avatar
    Join Date
    Mar 2006
    Location
    Colorado, but Canadian!
    Posts
    9,851
    Quote Originally Posted by wilgartw View Post
    yep, i'm using winamp 2.95 (this too was on an old post). I'll have a good play tonight to see what's what.

    i'll give the dragging of the target a go. will it matter that i am developing on my home pc, rather than my carputer?
    It shouldnt matter assuming you have the same software.
    Fusion Brain Version 6 Released!
    1.9in x 2.9in -- 47mm x 73mm
    30 Digital Outputs -- Directly drive a relay
    15 Analogue Inputs -- Read sensors like temperature, light, distance, acceleration, and more
    Buy now in the MP3Car.com Store

  3. #13
    Constant Bitrate
    Join Date
    Mar 2007
    Location
    manchester, UK
    Posts
    145
    same software (winamp 2.95, roadrunner etc), but one is on XP, one on vista. i presume this won't be an issue.

  4. #14
    Fusion Brain Creator 2k1Toaster's Avatar
    Join Date
    Mar 2006
    Location
    Colorado, but Canadian!
    Posts
    9,851
    Quote Originally Posted by wilgartw View Post
    same software (winamp 2.95, roadrunner etc), but one is on XP, one on vista. i presume this won't be an issue.
    If you are using Vista you have to run it in Administrator mode. (Right click run as admin). Just being an admin on the computer is NOT enough.
    Fusion Brain Version 6 Released!
    1.9in x 2.9in -- 47mm x 73mm
    30 Digital Outputs -- Directly drive a relay
    15 Analogue Inputs -- Read sensors like temperature, light, distance, acceleration, and more
    Buy now in the MP3Car.com Store

  5. #15
    Constant Bitrate
    Join Date
    Mar 2007
    Location
    manchester, UK
    Posts
    145
    Quote Originally Posted by 2k1Toaster View Post
    Change the minimum vote time higher. Also turn auto-averaging off so the input doesnt "float" when nothing is pressed.

    hello, at home now.

    i am in the logic diagrams, i have a timer (alarm clock item) that sets the dTime. is this the minumum vote time?

  6. #16
    Fusion Brain Creator 2k1Toaster's Avatar
    Join Date
    Mar 2006
    Location
    Colorado, but Canadian!
    Posts
    9,851
    Quote Originally Posted by wilgartw View Post
    hello, at home now.

    i am in the logic diagrams, i have a timer (alarm clock item) that sets the dTime. is this the minumum vote time?
    yes exactly. Value is in milliseconds.
    Fusion Brain Version 6 Released!
    1.9in x 2.9in -- 47mm x 73mm
    30 Digital Outputs -- Directly drive a relay
    15 Analogue Inputs -- Read sensors like temperature, light, distance, acceleration, and more
    Buy now in the MP3Car.com Store

  7. #17
    Constant Bitrate
    Join Date
    Mar 2007
    Location
    manchester, UK
    Posts
    145
    ok, i had my first button working (rewind)

    so i steamed ahead and added another 2 analogue inputs.
    set up the send key for play/pause and ffwd.

    it appears that ony the last one i set up works (button 1 has stopped working, only button 3 works).

    any ideas?

  8. #18
    Constant Bitrate
    Join Date
    Mar 2007
    Location
    manchester, UK
    Posts
    145
    Code:
      <!-- Begin Logic Declarations -->
        <all_statements>
          <if fire_on="input" minimum_delta_vote_time="500" id="Root Function #">
            <boolean_operation type="greater than">
              <parameter1>
                <analogue id="button1" time="0"></analogue>
              </parameter1>
              <parameter2>
                <number>2.5</number>
              </parameter2>
            </boolean_operation>
            <then>
              <do function="Send Key" functionTargetID="Winamp v1.x:Winamp v1.x" vote_opinion="Z" vote_priority="Low"></do>
            </then>
          </if>
          <if fire_on="input" minimum_delta_vote_time="500" id="Root Function #2">
            <boolean_operation type="greater than">
              <parameter1>
                <analogue id="button2" time="0"></analogue>
              </parameter1>
              <parameter2>
                <number>3</number>
              </parameter2>
            </boolean_operation>
            <then>
              <do function="Send Key" functionTargetID="Winamp v1.x:Winamp v1.x" vote_opinion="C" vote_priority="Low"></do>
            </then>
          </if>
          <if fire_on="logic" minimum_delta_vote_time="100" id="Root Function #3">
            <boolean_operation type="greater than">
              <parameter1>
                <analogue id="button3" time="0"></analogue>
              </parameter1>
              <parameter2>
                <number>3</number>
              </parameter2>
            </boolean_operation>
            <then>
              <do function="Send Key" functionTargetID="Winamp v1.x:Winamp v1.x" vote_opinion="B" vote_priority="Low"></do>
            </then>
          </if>
        </all_statements>

  9. #19
    Fusion Brain Creator 2k1Toaster's Avatar
    Join Date
    Mar 2006
    Location
    Colorado, but Canadian!
    Posts
    9,851
    you have the timers set to input on 2 of them, and logic on the last. There was an update to MDX but not the configurator yet, that deleted the "input" and "output" timers and replaced them with a single "io" timer.

    I suggest placing all logic blocks on the logic timer.
    Fusion Brain Version 6 Released!
    1.9in x 2.9in -- 47mm x 73mm
    30 Digital Outputs -- Directly drive a relay
    15 Analogue Inputs -- Read sensors like temperature, light, distance, acceleration, and more
    Buy now in the MP3Car.com Store

  10. #20
    Constant Bitrate
    Join Date
    Mar 2007
    Location
    manchester, UK
    Posts
    145
    that did the trick - nearly there!

    each button is doing something.... but not necessarily what it has been asked to ... when i press button 2, button 1 and 3 also register voltage.

    i read something about this today whilst researching but cannot remember where. do i need to connect all the -ve pins together (or something?)

Page 2 of 7 FirstFirst 1234567 LastLast

Similar Threads

  1. Replies: 16
    Last Post: 01-03-2009, 05:59 AM
  2. Volume leveling DSP plugin for winamp?
    By DeaconC in forum Newbie
    Replies: 0
    Last Post: 05-01-2008, 01:33 AM
  3. Volume Slider
    By garto in forum Road Runner
    Replies: 0
    Last Post: 05-13-2007, 01:11 PM
  4. Road Runner Volume Issues ! ! !
    By rewindnottm in forum Road Runner
    Replies: 8
    Last Post: 03-20-2007, 04:38 AM
  5. Replies: 3
    Last Post: 11-23-2006, 11:14 AM

Bookmarks

Posting Permissions

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