*
Make3D - 2024/25


Servo à rotation continue

  • Fonctionnement  

    #include Servo.h
    Servo myservo;
    int pos = 0;
    void setup() {
    myservo.attach(8);
    }
    void loop() {
    myservo.write(80);
    }