mirror of
https://github.com/stevenhowes/MX5-Arduino.git
synced 2026-05-26 15:53:40 +01:00
15 lines
198 B
Arduino
15 lines
198 B
Arduino
void task_tach_low_run()
|
|
{
|
|
digitalWrite(pin_tach, LOW);
|
|
}
|
|
|
|
void task_tach_high_run()
|
|
{
|
|
digitalWrite(pin_tach, HIGH);
|
|
|
|
// Schedule the end
|
|
task_tach_low = micros() + tach_pulse_length;
|
|
}
|
|
|
|
|