Add files via upload

This commit is contained in:
stevenhowes
2018-08-28 11:34:23 +01:00
committed by GitHub
parent d2163ce1f0
commit ad2f798089
12 changed files with 422 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
void task_coilx_fire_run(int pin)
{
digitalWrite(pin, LOW);
}
void task_coilx_charge_run(int pin)
{
digitalWrite(pin, HIGH);
}