Revision history of "Arduino 6 - mikrofón - digitálny vstup"

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) 10:02, 29 July 2019Palo (talk | contribs). . (201 bytes) (+201). . (Created page with "<syntaxhighlight lang="C++"> void setup() { pinMode(3, INPUT); Serial.begin(9600); } void loop() { if (digitalRead(3)) { Serial.println("tap-tap"); delay(500)...")