Fuel injection WIP - map only suitable for warm idle

This commit is contained in:
Steve Howes
2018-09-15 15:38:27 +01:00
parent 8c08af2458
commit 23293422cc
9 changed files with 125 additions and 26 deletions
+10
View File
@@ -0,0 +1,10 @@
void task_injectorx_close_run(int pin)
{
digitalWrite(pin, LOW);
}
void task_injectorx_open_run(int pin)
{
digitalWrite(pin, HIGH);
}