From: Cameron Ball Date: Mon, 6 Jul 2015 07:12:55 +0000 (+0800) Subject: Update pulse width to 100ms X-Git-Url: http://cameron1729.xyz/?p=hdmi-switcher.git;a=commitdiff_plain;h=0bce4bc6937ceaeb67085d83e809a159be67d708 Update pulse width to 100ms --- diff --git a/main.c b/main.c index 8c73ae4..394bf3b 100644 --- a/main.c +++ b/main.c @@ -30,9 +30,9 @@ void pulse_switch() { delay(config.sync_switch_delay); //wait digitalWrite(PULSE_PIN, 1); - delay(10); + delay(100); digitalWrite(PULSE_PIN, 0); - delay(10); + delay(100); } int validate_switch_state()