Page 3 of 3 FirstFirst 123
Results 51 to 65 of 65

Thread: Buzo's Accord & Megasquirt II EFI controller

  1. #51
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Thanks a lot for your nice words. These cars deserve to be kept in good shape and be modernized.

    A friend of mine started calling my car the knight rider, so I'm seriously thinking in adding the set of LEDs in front of the hood similar to that car on the tv show. I just found a chapter where I can see how many LEDs it has and the speed of switching side to side. I will emulate that and fit it in front of the car. It may sound like a child thing but I always liked that tv show and having a car with plenty of electronics.

    http://www.youtube.com/watch?v=oM7Nf...eature=related

    Sorry for the audio in spanish haha but its the way I saw it when I was young.
    Last edited by Buzo; 02-01-2012 at 09:34 AM. Reason: I should talk in plural...



  2. #52
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    this is an animation...Hope to get close to this.



    OK, well. It doesn't show the animation, but this is the idea.

  3. #53
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Just in case you are wondering if this is going to look too "mexican" in my car, It will, but I plan to add a sw in the cabin so I can turn it on only when I'm with friends showing off and then turn it off for normal drive. Unless I have had a couple of beers then I may leave them on

  4. #54

    cygnus x-1's Avatar
    Join Date
    Aug 2006
    Vehicle
    '87 Prelude DX, '00 Nissan Frontier, '87 Suzuki Samurai DIESEL!
    Location
    Chicago area
    Posts
    2,267

    Re: Buzo's Accord & Megasquirt II EFI controller

    Quote Originally Posted by Buzo View Post
    this is an animation...Hope to get close to this.



    OK, well. It doesn't show the animation, but this is the idea.

    That actually fits pretty well. You have to have different settings for it though. If you remember from the show, the "scanning" speed would get faster when they were chasing someone. And then when KITT got really pissed off the pattern would change from left/right to a center pattern.

    Of course these guys have already beaten you to the idea.

    http://www.knight-f2k4.com/


    C|

  5. #55
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Creating the patterns will be the funniest part of this little project.

    here is the youtube link of my progress so far. It was easy to get it started & working.

    http://youtu.be/gfOBwf9EZMU

    Its just the 1st step, still need to add color filters and refine the timing and speed. and create hundreds of patterns, and of course, install it in the car haha.
    Last edited by Buzo; 02-01-2012 at 11:10 PM. Reason: Forgot to say that video in youtube is my progress

  6. #56
    3Geez Veteran A18A's Avatar
    Join Date
    Sep 2005
    Vehicle
    1988 Honda Vigor
    Location
    New Zealand
    Posts
    8,081

    Re: Buzo's Accord & Megasquirt II EFI controller

    I've always wanted the knight rider lights, but don't know how to make them for under $10

  7. #57
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    I know this isn't an electronics forum, but posting the code may be the base for a student willing to do an electronics project like this.

    Code:
    #include <pic.h>
    #include <htc.h>
    #include <stdio.h>
    
    // Buzo's knight rider scanner simulation. For any 3geez!
    
    
    // Config Register: CONFIG
    //__CONFIG (FOSC_XT, WDTE_OFF, PWRTE_OFF, CP_OFF);
    
    #define _XTAL_FREQ 4000000
    #define FOSC 4000000L
    
    unsigned char i;
    
    void
    wait(void)
    {
    		for(i=25;i>0;i--)
    		{	__delay_ms(1);
    		}
    }
    
    void 
    main(void) 
    {
    	
    	PORTB=0;
    	TRISB=0;	//	All outputs
    	
    
    do
    {
    	RB0=1;
    	wait();	// Wait ms_delay
    	RB7=0;
    	wait();	// Wait ms_delay
    	RB1=1;
    	wait();	// Wait ms_delay
    	RB0=0;
    	wait();	// Wait ms_delay
    	RB1=1;
    	wait();	// Wait ms_delay
    	RB2=1;
    	wait();	// Wait ms_delay
    	RB1=0;
    	wait();	// Wait ms_delay
    	RB3=1;
    	wait();	// Wait ms_delay
    	RB2=0;
    	wait();	// Wait ms_delay
    	RB4=1;
    	wait();	// Wait ms_delay
    	RB3=0;
    	wait();	// Wait ms_delay
    	RB5=1;
    	wait();	// Wait ms_delay
    	RB4=0;
    	wait();	// Wait ms_delay
    	RB6=1;
    	wait();	// Wait ms_delay
    	RB5=0;
    	wait();	// Wait ms_delay
    	RB7=1;
    	wait();	// Wait ms_delay
    	RB6=0;
    	wait();	// Wait ms_delay
    
    
    	RB6=1;
    	wait();	// Wait ms_delay
    	RB7=0;
    	wait();	// Wait ms_delay
    	RB5=1;
    	wait();	// Wait ms_delay
    	RB6=0;
    	wait();	// Wait ms_delay
    	RB4=1;
    	wait();	// Wait ms_delay
    	RB5=0;
    	wait();	// Wait ms_delay
    	RB3=1;
    	wait();	// Wait ms_delay
    	RB4=0;
    	wait();	// Wait ms_delay
    	RB2=1;
    	wait();	// Wait ms_delay
    	RB3=0;
    	wait();	// Wait ms_delay
    	RB1=1;
    	wait();	// Wait ms_delay
    	RB2=0;
    	wait();	// Wait ms_delay
    	RB0=1;
    	wait();	// Wait ms_delay
    	RB1=0;
    	wait();	// Wait ms_delay
    	
    
     } while(1==1);
    }

  8. #58
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    I used some cooper boards I had lying around to hold the bulbs.
    Cut them about 1" wide so they fit inside the gap and used solder & an iron to join 5 of them and drilled 8 holes and also soldered the 12V bulbs.



    No fancy sockets for the bulbs. If one gets damaged I need to use the iron.
    I will add a clear protection and the color will be orange. I also can make separators between each bulb, so the light will look rectangular.
    How about some aluminum tape to reflect the light?


  9. #59
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Quote Originally Posted by cygnus x-1 View Post
    That actually fits pretty well. You have to have different settings for it though. If you remember from the show, the "scanning" speed would get faster when they were chasing someone. And then when KITT got really pissed off the pattern would change from left/right to a center pattern.

    Of course these guys have already beaten you to the idea.

    http://www.knight-f2k4.com/


    C|
    Interesting site. Thanks.
    I guess I need to look for renting the series of knight rider just to refresh my memory, I didn't recall it changed the scanner pattern.

  10. #60
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Quote Originally Posted by A18A View Post
    I've always wanted the knight rider lights, but don't know how to make them for under $10
    This one is really cheap.

    1 copper board from radioshack
    8 small 12 V bulbs from autozone
    the circuit board for the microprocessor can be build in a protoboard (a drilled type board but you still need to solder the components) and the cost for all the components for this project should be less than 20 usd.

    The only complication is how to program the microprocessor. But if someone is interested I can easily ship programmed chips for plug and play. But before getting to that, I need to finish mine and get as much Kitt patterns as I can.

  11. #61
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Nice looking! That slot was made to fit a scanner though.
    My wife didn't know what I was doing, and she couldn't stop laughing when I show her my knight rider's scanner version. Oh women.


  12. #62
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Quote Originally Posted by Buzo View Post
    My wife didn't know what I was doing, and she couldn't stop laughing when I show her my knight rider's scanner version. Oh women.
    She says the car looks "too happy" when I was trying to make it look mad.
    I don't know if she is going to be able to stop laughing about my lights some day.
    This morning when I left home, she was in the window in front of the garage waiting for me to turn the scanner on. I did it just to make her happy.
    I started to think that this scanner thing might not be the greatest idea...
    Last edited by Buzo; 02-03-2012 at 07:41 AM.

  13. #63

    2ndGenGuy's Avatar
    Join Date
    Jan 2005
    Vehicle
    1981 Accord Hatchback, 1984 Accord Sedan
    Location
    Seattle, WA
    Posts
    9,697

    Re: Buzo's Accord & Megasquirt II EFI controller

    Okay, this is rad. Dude, we need VIDS of this in action!

  14. #64
    LXi User Buzo's Avatar
    Join Date
    Dec 2010
    Vehicle
    88 Honda Accord EX - Single Port EFI, 4 doors Aut.
    Location
    North of Mexico
    Posts
    836

    Re: Buzo's Accord & Megasquirt II EFI controller

    Quote Originally Posted by 2ndGenGuy View Post
    Okay, this is rad. Dude, we need VIDS of this in action!
    With the knight rider's introduction theme in the background?
    Oh yes! I'm working on that, but I haven't found anybody willing to hold the camera while I'm approaching to him at full speed.

  15. #65

    Dr_Snooz's Avatar
    Join Date
    Jun 2007
    Vehicle
    1989 Accord LX-i
    Location
    Fresno, California
    Posts
    10,638

    Re: Buzo's Accord & Megasquirt II EFI controller

    Quote Originally Posted by Buzo View Post
    With the knight rider's introduction theme in the background?
    Oh yes! I'm working on that, but I haven't found anybody willing to hold the camera while I'm approaching to him at full speed.
    LOL. Have you considered a tripod?
    Dr_Snooz

    "I like to take hammers, and just break stuff, just break stuff." - Beavis


    1989 Honda Accord LX-i Coupe, 240k miles, MT swap, rear disc swap

    Shop manual downloads available here: CLICK TO VIEW

Similar Threads

  1. Buzo's Rock Band
    By Buzo in forum Classic Honda Community Chat
    Replies: 10
    Last Post: 10-08-2012, 09:12 PM
  2. Buzo got two weeks vacation
    By Buzo in forum 3geez Accords
    Replies: 12
    Last Post: 04-24-2011, 04:13 PM
  3. Megasquirt?
    By A20A1 in forum Forced Induction
    Replies: 64
    Last Post: 07-20-2007, 11:49 AM
  4. Diaphragms for 1987 Accord Idle Boost Throttle Controller
    By AccordOwner in forum Carburetor Tech
    Replies: 3
    Last Post: 11-13-2005, 05:57 PM

Bookmarks

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
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.
     
Links monetized by VigLink