I have a small problem that I can't solve. I plan to write a program for an open day that will give people a candy when I start it. Unfortunately, he goes into a (see picture) similar posture at program start. And I don't want him to do that.
That's the code I'm using
(ich habe ein kleines Problem welches ich nicht lösen kann. ich habe vor für einen tag der offenen Tür ein programm zu schreiben was leuten einen bonbon gibt wen ich es starte. leider Geht er bei Programm Start in eine (siehe Bild) ähnliche haltung. und ich will das er dies nicht tut.)
das ist der code den ich verwende
#include <Braccio.h>
#include <Servo.h>
Servo base;
Servo shoulder;
Servo elbow;
Servo wrist_ver;
Servo wrist_rot;
Servo gripper;
void setup() {
Braccio.begin();
//(step delay M1, M2, M3, M4, M5, M6);
Braccio.ServoMovement(20, 0, 90, 90, 80, 0, 10);
delay(1000);
Braccio.ServoMovement(20, 90, 90, 90, 80, 0, 10);
Braccio.ServoMovement(9000, 95, 34, 66, 10, 100, 10);
delay(1000);
Braccio.ServoMovement(9000, 95, 34, 66, 10, 100, 70);
delay(1500);
Braccio.ServoMovement(9000, 95, 34, 66, 10, 100, 72);
delay(1500);
Braccio.ServoMovement(9000, 95, 149, 90, 103, 100, 72);
delay(1000);
Braccio.ServoMovement(9000, 95, 149, 90, 103, 100, 10);
Braccio.ServoMovement(20, 0, 90, 90, 80, 0, 10);
Braccio.ServoMovement(20, 0, 90, 90, 45, 0, 10);
Braccio.ServoMovement(20, 0, 90, 90, 135, 0, 10);
Braccio.ServoMovement(20, 0, 90, 90, 80, 0, 10);
}
void loop() {
}
Unfortunately I'm not that gifted at coding, so I'm asking for some simple help
(leider bin ich nicht so begabt im coden deshalb bitte ich um eine einfache hilfe )