View Single Post
Old 08-01-2016, 09:40 PM   #36 (permalink)
Natalya
Engine-Off-Coast
 
Natalya's Avatar
 
Join Date: Apr 2016
Location: Atlanta
Posts: 564

Red 2000 Insight (2017 through 2019) - '00 Honda Insight 5MT
90 day: 64.72 mpg (US)

Red 2000 Lithium Insight (2020) - '00 Honda Insight LTO
90 day: 71.76 mpg (US)
Thanks: 224
Thanked 309 Times in 177 Posts
Code:
// Elegant Forced Auto Stop
// Tells a G1 Honda Insight that it is going 1 MPH for AS

int out_a  =  A1;

void setup()
{
  pinMode(out_a, OUTPUT);
}
 
void loop()
{
  digitalWrite(out_a, HIGH);
  delay(250);
  digitalWrite(out_a, LOW);
  delay(250);
}
This really simple code is all you need to tell the Arduino what to do. Verify it works by plugging it up to a 5v power source then put a resistor and LED in series on pin A1 and ground them. When the Arduino is given power it should flash the LED at 2hz. If it does that then you can use it for EFAS.
  Reply With Quote
The Following User Says Thank You to Natalya For This Useful Post:
t vago (08-02-2016)