1. Welcome to Tacoma World!

    You are currently viewing as a guest! To get full-access, you need to register for a FREE account.

    As a registered member, you’ll be able to:
    • Participate in all Tacoma discussion topics
    • Communicate privately with other Tacoma owners from around the world
    • Post your own photos in our Members Gallery
    • Access all special features of the site

(626 & 909) TW Members

Discussion in 'Southern California' started by Manwithoutaplan, Mar 4, 2011.

  1. Mar 14, 2012 at 12:28 PM
    silver taco

    silver taco Well-Known Member

    Joined:
    Mar 27, 2010
    Member:
    #34079
    Messages:
    727
    Gender:
    Male
    First Name:
    Chris
    Los Angeles
    Vehicle:
    07 4X access cab
    Icon 2.5 ext travel, Camburg 1.25" uca's, All-pro leafs, Icon 2.5" rear shocks, LR jounce front and back, breather mod, KR Fab rear bumper, Kenwood 2m radio, All-Pro sliders, Front bumper by Surfinferno (Dylan), Glassworks fenders, 4:56 gears, gusseted spindles and coil buckets
    Figured, but I had to ask.
     
  2. Mar 14, 2012 at 12:30 PM
    Manwithoutaplan

    Manwithoutaplan [OP] the full Monty

    Joined:
    Jan 30, 2008
    Member:
    #4500
    Messages:
    54,641
    Gender:
    Male
    ID
    Vehicle:
    07 Tacoma Speedway Blue Trd 4x4
    -Nitro 4.56 gears - Arb Front and Rear lockers. -Rear Swing out bumper Curiosity of ( Dept .94) https://www.facebook.com/Dept94 -Tinted, -ProComp 6 inch lift with Icon Coil overs and Bilstein's 7100Resi -315/70/17 - 17x8 in Pro Comp Matte black rims 4.5 bs -East Coast Gear Supply Sliders -ALL Pro EXP LEaf pack -Camburg UCA's -CAB mount CHOP
    ok fair trade for waffles :D
     
  3. Mar 14, 2012 at 12:31 PM
    Manwithoutaplan

    Manwithoutaplan [OP] the full Monty

    Joined:
    Jan 30, 2008
    Member:
    #4500
    Messages:
    54,641
    Gender:
    Male
    ID
    Vehicle:
    07 Tacoma Speedway Blue Trd 4x4
    -Nitro 4.56 gears - Arb Front and Rear lockers. -Rear Swing out bumper Curiosity of ( Dept .94) https://www.facebook.com/Dept94 -Tinted, -ProComp 6 inch lift with Icon Coil overs and Bilstein's 7100Resi -315/70/17 - 17x8 in Pro Comp Matte black rims 4.5 bs -East Coast Gear Supply Sliders -ALL Pro EXP LEaf pack -Camburg UCA's -CAB mount CHOP
    :rofl:
     
  4. Mar 14, 2012 at 12:43 PM
    Jerez

    Jerez SoCal LED Dash Swap

    Joined:
    Feb 1, 2010
    Member:
    #30488
    Messages:
    17,993
    Gender:
    Male
    First Name:
    Rod
    Ontario Ranch
    Vehicle:
    08 TRD 2wd converted to 4wd
    Estock
    does anyone know anything about micro controllers and C programming???




    #include <system.h> //pic definition files required by boostc
    #pragma CLOCK_FREQ 48000000 //Set clock frequency
    void main()
    {
    trisa = 0; //set all porta to output
    porta = 0; //set all porta pins to logic (0V)
    while( 1 ) // A endless while loop
    {
    // Turn on and Turn off LEDs and delay 200 millisecond,
    // keep going and start over again with a endless while loop
    porta = 0b00000001; // Set Port a to 0b00000001;
    delay_ms(200); // Delay 200 milliseconds
    porta = 0b00000010;
    delay_ms(200);
    porta = 0b00000100;
    delay_ms(200);
    porta = 0b00001000;
    delay_ms(200);
    porta = 0b00000100;
    delay_ms(200);
    porta = 0b00100010;
    delay_ms(200);
    porta = 0b00000001;
    delay_ms(200);
    }

    }




    i am eeeeffffaawwwking lost :confused: :censored:
     
  5. Mar 14, 2012 at 12:54 PM
    ruler

    ruler Well-Known Member

    Joined:
    Jan 30, 2008
    Member:
    #4503
    Messages:
    1,999
    Gender:
    Male
    SoCal - Los Angeles - SGV
    Vehicle:
    08 Tacoma, TRD Sport, DC 4x4
    Fox Extended Travel Coilovers 2.5 (front), Fox 2.0 shocks (rear),Total Chaos UCA's, AllPro Expedition leaf pack, AllPro front plate style bumper,BHLM, GrillCraft MX series Grill, ATX Thug 17inch rims, Toyo Open Country MT (295,70,17), TRD CAI,Rear smoked LED tail lights, slimcubby HID Head Lights (50w 1200k), ADVMonster 60 Series 3600 Lumen LED Off Road Lights , Pioneer Avic-F700bt (navigation,head unit)
    probably stating the obvious but looks like code to program some kind of LED indicator light to flash at a specified interval. WTF are you using this on ?
     
  6. Mar 14, 2012 at 1:02 PM
    Jerez

    Jerez SoCal LED Dash Swap

    Joined:
    Feb 1, 2010
    Member:
    #30488
    Messages:
    17,993
    Gender:
    Male
    First Name:
    Rod
    Ontario Ranch
    Vehicle:
    08 TRD 2wd converted to 4wd
    Estock
    :taco: +plus 1 for you my friend lol

    i have this board wired up to this computer right now....

    "Modify the program so that the pattern lights two LED’s at a time."

    i had it down last week but for some reason its not working...
     
  7. Mar 14, 2012 at 1:33 PM
    FoundOffRoadDead

    FoundOffRoadDead whiptastic handling

    Joined:
    Jul 18, 2011
    Member:
    #60114
    Messages:
    565
    Gender:
    Male
    First Name:
    Shamus
    Walnut
    Vehicle:
    Ford
    Where you getting them to blink?
    And or say some thing or just getting them to flash.?

    0b00000010-0b00000100 Are you sure that tho's are correct?
    The delay is correct. From what i see.. porta = 0b00000001; And going down are not.

    try a void loop()
     
  8. Mar 14, 2012 at 1:36 PM
    Jerez

    Jerez SoCal LED Dash Swap

    Joined:
    Feb 1, 2010
    Member:
    #30488
    Messages:
    17,993
    Gender:
    Male
    First Name:
    Rod
    Ontario Ranch
    Vehicle:
    08 TRD 2wd converted to 4wd
    Estock
    i removed porta = 0b00000001; because that was the last delay it had...


    now i need to make the lights light up 2 leds at a time...

    for some reason i cant understand this shit lol
     
  9. Mar 14, 2012 at 1:38 PM
    Jerez

    Jerez SoCal LED Dash Swap

    Joined:
    Feb 1, 2010
    Member:
    #30488
    Messages:
    17,993
    Gender:
    Male
    First Name:
    Rod
    Ontario Ranch
    Vehicle:
    08 TRD 2wd converted to 4wd
    Estock
    hard to explain this thru a computer lol..
     
  10. Mar 14, 2012 at 1:44 PM
    FoundOffRoadDead

    FoundOffRoadDead whiptastic handling

    Joined:
    Jul 18, 2011
    Member:
    #60114
    Messages:
    565
    Gender:
    Male
    First Name:
    Shamus
    Walnut
    Vehicle:
    Ford
    /* Blink Multiple LEDs without Delay
    *
    * Turns on and off several light emitting diode(LED) connected to a digital
    * pin, without using the delay() function. This means that other code
    * can run at the same time without being interrupted by the LED code.
    */
    int led1 = 13; // LED connected to digital pin 13
    int led2 = 12;
    int value1 = LOW; // previous value of the LED
    int value2 = LOW; // previous value of the LED
    long time1 = millis();
    long time2 = millis();

    long interval1 = 1000; // interval at which to blink (milliseconds)
    long interval2 = 500;

    void setup()
    {
    pinMode(led1, OUTPUT); // sets the digital pin as output
    pinMode(led2, OUTPUT);
    }

    void loop()
    {
    unsigned long m = millis();

    if (m - time1 > interval1){
    time1 = m;

    if (value1 == LOW)
    value1 = HIGH;
    else
    value1 = LOW;

    digitalWrite(led1, value1);
    }

    if (m - time2 > interval2){
    time2 = m;

    if (value2 == LOW)
    value2 = HIGH;
    else
    value2 = LOW;

    digitalWrite(led2, value2);
    }
    }


    ""Your going to have to set each pin in order to do that""
     
  11. Mar 14, 2012 at 1:45 PM
    FoundOffRoadDead

    FoundOffRoadDead whiptastic handling

    Joined:
    Jul 18, 2011
    Member:
    #60114
    Messages:
    565
    Gender:
    Male
    First Name:
    Shamus
    Walnut
    Vehicle:
    Ford
    Try a try a-----> void loop()
    That way it will void some of the led's and still run.. This will take time to get it correct.
     
  12. Mar 14, 2012 at 2:45 PM
    blackhawke88

    blackhawke88 wo ai ni bao bei ^_^

    Joined:
    Jan 11, 2009
    Member:
    #12478
    Messages:
    16,598
    Gender:
    Male
    SGV, CA
    Vehicle:
    07 TRD Offroad
    This site contains affiliate links for which the site may be compensated.
  13. Mar 14, 2012 at 2:57 PM
    ruler

    ruler Well-Known Member

    Joined:
    Jan 30, 2008
    Member:
    #4503
    Messages:
    1,999
    Gender:
    Male
    SoCal - Los Angeles - SGV
    Vehicle:
    08 Tacoma, TRD Sport, DC 4x4
    Fox Extended Travel Coilovers 2.5 (front), Fox 2.0 shocks (rear),Total Chaos UCA's, AllPro Expedition leaf pack, AllPro front plate style bumper,BHLM, GrillCraft MX series Grill, ATX Thug 17inch rims, Toyo Open Country MT (295,70,17), TRD CAI,Rear smoked LED tail lights, slimcubby HID Head Lights (50w 1200k), ADVMonster 60 Series 3600 Lumen LED Off Road Lights , Pioneer Avic-F700bt (navigation,head unit)
    lmao a Suburu Brat ? that thing is one ugly sucker !
     
  14. Mar 14, 2012 at 2:58 PM
    blackhawke88

    blackhawke88 wo ai ni bao bei ^_^

    Joined:
    Jan 11, 2009
    Member:
    #12478
    Messages:
    16,598
    Gender:
    Male
    SGV, CA
    Vehicle:
    07 TRD Offroad
    all wheel drive, tune it up, you yerself a nice lil' rally truck
     
  15. Mar 14, 2012 at 4:40 PM
    precoma

    precoma Well-Known Member

    Joined:
    Jun 23, 2011
    Member:
    #58730
    Messages:
    5,399
    Gender:
    Male
    First Name:
    Corey
    Lake Arrowhead, CA
    Vehicle:
    2009 4x4 trd sport
    Total Chaos 3.5 Long travel, Defined SUA
    ok i have a question for all you guys running hid headlights, i have hids on my truck and one of them seems dimmer then the other and more of a purple then blue like the other headlight it just started doing it yesterday is it cause the bulb is going out or what ?
     
  16. Mar 14, 2012 at 4:42 PM
    Jerez

    Jerez SoCal LED Dash Swap

    Joined:
    Feb 1, 2010
    Member:
    #30488
    Messages:
    17,993
    Gender:
    Male
    First Name:
    Rod
    Ontario Ranch
    Vehicle:
    08 TRD 2wd converted to 4wd
    Estock
    im 80% sure its the bulb....does it flicker or anything??

    one way to test it is swap the ballast between both headlights...
     
  17. Mar 14, 2012 at 5:41 PM
    FoundOffRoadDead

    FoundOffRoadDead whiptastic handling

    Joined:
    Jul 18, 2011
    Member:
    #60114
    Messages:
    565
    Gender:
    Male
    First Name:
    Shamus
    Walnut
    Vehicle:
    Ford
    Need new ones... its the bulb.
     
  18. Mar 14, 2012 at 7:17 PM
    MonkeyProof

    MonkeyProof Power Top

    Joined:
    Oct 7, 2008
    Member:
    #9774
    Messages:
    12,812
    SoCal- SGV
    If you flop your junk or even roll it..you'll need to pull the plugs out lol...I have it down to less then 15 minutes for all six plugs on the crawler :D
     
  19. Mar 14, 2012 at 9:39 PM
    precoma

    precoma Well-Known Member

    Joined:
    Jun 23, 2011
    Member:
    #58730
    Messages:
    5,399
    Gender:
    Male
    First Name:
    Corey
    Lake Arrowhead, CA
    Vehicle:
    2009 4x4 trd sport
    Total Chaos 3.5 Long travel, Defined SUA
    Alright then where is a good place to get hid bulbs ?
     
  20. Mar 14, 2012 at 9:59 PM
    Greenbergler

    Greenbergler Well-Known Member

    Joined:
    Jan 9, 2012
    Member:
    #70331
    Messages:
    3,019
    Gender:
    Male
    First Name:
    Corey
    Orange County, CA
    Vehicle:
    2017 trd sport DCLB 4x4
    [​IMG]
    anyone like the beach?
     

Products Discussed in

To Top