mirror of
https://github.com/Theaninova/Arduino-IRremote.git
synced 2025-12-11 08:56:14 +00:00
Update IRsendDemo.ino
As written this example will cause issues with some IR receivers. On the face of it it sends teh sony signal burst 3 times with a 40ms gap. However, it really continues to send the sony signal forever with a 40ms gap. There needs to be a reasonable gap between signals sent & I have added in a 5 sec gap as a reasonable figure. Without a gap, many IR receivers will treat this signal as noise as it send continuous sony bursts with a 40 ms gap.
This commit is contained in:
@@ -20,4 +20,5 @@ void loop() {
|
||||
irsend.sendSony(0xa90, 12);
|
||||
delay(40);
|
||||
}
|
||||
delay(5000); //5 second delay between each signal burst
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user