How TO, DIY injector flow testing.
Per a conversation I had with Dale Follet though, I'll probably power the relay separately with it's own 5v source.
LCD screen, dials to adjust RPM/duty cycle, full static and dynamic testing with 1000cc tubes.
Total cost is about $100 for tubes, wood, arduino components, etc.
At the moment it's all over my head, I struggled mightily just to get this working lol.
Now that I have my feet wet though, the possibilities for everything are endless!
Trending Topics
The Best V8 Stories One Small Block at Time
final code here, still working on dynamic,
int ledPin = A5; int switchPin = A0; boolean lastButton = LOW; boolean currentButton = LOW; int switch2Pin = A1; boolean last2Button = LOW; boolean current2Button = LOW; void setup () { pinMode(ledPin, OUTPUT); pinMode(switchPin, INPUT); pinMode(switch2Pin, INPUT); digitalWrite(ledPin, HIGH); } boolean debounce(boolean last) { boolean current = digitalRead(switchPin); if (last != current) { (delay(5)); } return current; } boolean debounce2(boolean last2) { boolean current2 = digitalRead(switch2Pin); if (last2 != current2) { (delay(5)); } return current2; } void loop () { current2Button = debounce2(last2Button); if (last2Button == LOW && current2Button == HIGH) { /* * Here is where the static flow is. currently set to * 10 seconds of on time. This will need changed for * different flow rate injectors so you dont overfill * your graduated cylinders. */ delay(500); digitalWrite(ledPin, LOW); delay(10000); digitalWrite(ledPin, HIGH); } }

