Revision history of "Arduino 12 - servo s knižnicou"

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:04, 31 July 2019Palo (talk | contribs). . (234 bytes) (+234). . (Created page with "<syntaxhighlight lang="C++"> #include <Servo.h> Servo motor; void setup() { motor.attach(2); } void loop() { motor.write(90); delay(2000); motor.write(180); delay(2...")