Prvni commit.

This commit is contained in:
vojta@alfred
2026-02-01 00:00:07 +01:00
commit 4e5c55e846
213 changed files with 17991 additions and 0 deletions
@@ -0,0 +1,19 @@
#include <Servo.h>
Servo myservo; // create servo object to control a servo
void setup()
{
Serial.begin(9600);
delay(1000);
}
void loop()
{
myservo.attach(3); // modify each pin to adjust
//myservo.write(0); // the servo will automatically rotate to 0°
//delay(1000);
myservo.write(90); // the servo will automatically rotate to 90°
//myservo.write(180); // the servo will automatically rotate to 180°
delay(1000);
}