Revision history of "Arduino 7 - double-click"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 07:45, 30 July 2019Palo (talk | contribs). . (476 bytes) (+476). . (Created page with "<syntaxhighlight lang="C++"> void setup() { pinMode(3, INPUT); Serial.begin(9600); } void loop() { if (digitalRead(3)) { while (digitalRead(3) == 1) { } delay...")