Revision history of "Arduino 3 - bliká LED"

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) 09:16, 29 July 2019Palo (talk | contribs). . (185 bytes) (+185). . (Created page with "<syntaxhighlight lang="C++"> void setup() { pinMode(13, OUTPUT); } void loop() { digitalWrite(13, HIGH); delay(4000); digitalWrite(13, LOW); delay(4000); } </syntax...")