• smattachai.p posted an update 5 years ago

    I tried to set servo motor for finger but it did not stay in the zero position.

    I did easy command as follows.
    #include

    Servo myservoindex; // set 0 position

    void setup() {
    myservoindex.attach(3);
    }

    void loop() {
    myservoindex.write(0); // set 0 postion
    }