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
+13
View File
@@ -0,0 +1,13 @@
void task_tach_low_run()
{
digitalWrite(pin_tach, LOW);
}
void task_tach_high_run()
{
digitalWrite(pin_tach, HIGH);
// Auto-schedule the end
task_tach_low = micros() + tach_pulse_length;
}