Servo mit bluetooth geht nicht und zappelt

Hallo,

Ich habe ein Problem. Ich habe den Roboterarm aus dem Video DIY Arduino Robot Arm with Smartphone Control - YouTube gebaut doch das Problem ist, dass die servo Motoren nur wild rum zappeln. Selbst wenn ich den Code vom Video kopieren und die appfunktiiniert es nicht. Auch die schaltung ist identisch. Ich weiß nicht wo das Problem liegt.

Hallo
Haben die Servos eine eigene Energieversorgung ?

Ja sie sind wie im Video angeschlossen an eine externe Stromquelle aus der Steckdose. Sie sind parallel geschaltet.

Was genau heißt das ?
Was ist parallel geschaltet ?

Am Besten du zeigst uns ein Foto deines Aufbaus, wo alles gut zu erkennen ist, auch der Kabelverlauf. Und den von dir verwendeten Sketch in Code-Tags.

Das ist der Code:

#include <SoftwareSerial.h>

#include <Servo.h>

Servo servo01;

Servo servo02;

Servo servo03;

Servo servo04;

Servo servo05;

Servo servo06;

SoftwareSerial Bluetooth(3, 4); // Arduino(RX, TX) - HC-05 Bluetooth (TX, RX)

int servo1Pos, servo2Pos, servo3Pos, servo4Pos, servo5Pos, servo6Pos; // current position

int servo1PPos, servo2PPos, servo3PPos, servo4PPos, servo5PPos, servo6PPos; // previous position

int servo01SP[50], servo02SP[50], servo03SP[50], servo04SP[50], servo05SP[50], servo06SP[50]; // for storing positions/steps

int speedDelay = 20;

int index = 0;

String dataIn = "";

void setup() {

servo01.attach(5);

servo02.attach(6);

servo03.attach(7);

servo04.attach(8);

servo05.attach(9);

servo06.attach(10);

Bluetooth.begin(38400); // Default baud rate of the Bluetooth module

Bluetooth.setTimeout(1);

delay(20);

// Robot arm initial position

servo1PPos = 90;

servo01.write(servo1PPos);

servo2PPos = 150;

servo02.write(servo2PPos);

servo3PPos = 35;

servo03.write(servo3PPos);

servo4PPos = 140;

servo04.write(servo4PPos);

servo5PPos = 85;

servo05.write(servo5PPos);

servo6PPos = 80;

servo06.write(servo6PPos);

}

void loop() {

// Check for incoming data

if (Bluetooth.available() > 0) {

dataIn = Bluetooth.readString(); // Read the data as string

// If "Waist" slider has changed value - Move Servo 1 to position

if (dataIn.startsWith("s1")) {

String dataInS = dataIn.substring(2, dataIn.length()); // Extract only the number. E.g. from "s1120" to "120"

servo1Pos = dataInS.toInt(); // Convert the string into integer

// We use for loops so we can control the speed of the servo

// If previous position is bigger then current position

if (servo1PPos > servo1Pos) {

for ( int j = servo1PPos; j >= servo1Pos; j--) { // Run servo down

servo01.write(j);

delay(20); // defines the speed at which the servo rotates

}

}

// If previous position is smaller then current position

if (servo1PPos < servo1Pos) {

for ( int j = servo1PPos; j <= servo1Pos; j++) { // Run servo up

servo01.write(j);

delay(20);

}

}

servo1PPos = servo1Pos; // set current position as previous position

}

// Move Servo 2

if (dataIn.startsWith("s2")) {

String dataInS = dataIn.substring(2, dataIn.length());

servo2Pos = dataInS.toInt();

if (servo2PPos > servo2Pos) {

for ( int j = servo2PPos; j >= servo2Pos; j--) {

servo02.write(j);

delay(50);

}

}

if (servo2PPos < servo2Pos) {

for ( int j = servo2PPos; j <= servo2Pos; j++) {

servo02.write(j);

delay(50);

}

}

servo2PPos = servo2Pos;

}

// Move Servo 3

if (dataIn.startsWith("s3")) {

String dataInS = dataIn.substring(2, dataIn.length());

servo3Pos = dataInS.toInt();

if (servo3PPos > servo3Pos) {

for ( int j = servo3PPos; j >= servo3Pos; j--) {

servo03.write(j);

delay(30);

}

}

if (servo3PPos < servo3Pos) {

for ( int j = servo3PPos; j <= servo3Pos; j++) {

servo03.write(j);

delay(30);

}

}

servo3PPos = servo3Pos;

}

// Move Servo 4

if (dataIn.startsWith("s4")) {

String dataInS = dataIn.substring(2, dataIn.length());

servo4Pos = dataInS.toInt();

if (servo4PPos > servo4Pos) {

for ( int j = servo4PPos; j >= servo4Pos; j--) {

servo04.write(j);

delay(30);

}

}

if (servo4PPos < servo4Pos) {

for ( int j = servo4PPos; j <= servo4Pos; j++) {

servo04.write(j);

delay(30);

}

}

servo4PPos = servo4Pos;

}

// Move Servo 5

if (dataIn.startsWith("s5")) {

String dataInS = dataIn.substring(2, dataIn.length());

servo5Pos = dataInS.toInt();

if (servo5PPos > servo5Pos) {

for ( int j = servo5PPos; j >= servo5Pos; j--) {

servo05.write(j);

delay(30);

}

}

if (servo5PPos < servo5Pos) {

for ( int j = servo5PPos; j <= servo5Pos; j++) {

servo05.write(j);

delay(30);

}

}

servo5PPos = servo5Pos;

}

// Move Servo 6

if (dataIn.startsWith("s6")) {

String dataInS = dataIn.substring(2, dataIn.length());

servo6Pos = dataInS.toInt();

if (servo6PPos > servo6Pos) {

for ( int j = servo6PPos; j >= servo6Pos; j--) {

servo06.write(j);

delay(30);

}

}

if (servo6PPos < servo6Pos) {

for ( int j = servo6PPos; j <= servo6Pos; j++) {

servo06.write(j);

delay(30);

}

}

servo6PPos = servo6Pos;

}

// If button "SAVE" is pressed

if (dataIn.startsWith("SAVE")) {

servo01SP[index] = servo1PPos; // save position into the array

servo02SP[index] = servo2PPos;

servo03SP[index] = servo3PPos;

servo04SP[index] = servo4PPos;

servo05SP[index] = servo5PPos;

servo06SP[index] = servo6PPos;

index++; // Increase the array index

}

// If button "RUN" is pressed

if (dataIn.startsWith("RUN")) {

runservo(); // Automatic mode - run the saved steps

}

// If button "RESET" is pressed

if ( dataIn == "RESET") {

memset(servo01SP, 0, sizeof(servo01SP)); // Clear the array data to 0

memset(servo02SP, 0, sizeof(servo02SP));

memset(servo03SP, 0, sizeof(servo03SP));

memset(servo04SP, 0, sizeof(servo04SP));

memset(servo05SP, 0, sizeof(servo05SP));

memset(servo06SP, 0, sizeof(servo06SP));

index = 0; // Index to 0

}

}

}

// Automatic mode custom function - run the saved steps

void runservo() {

while (dataIn != "RESET") { // Run the steps over and over again until "RESET" button is pressed

for (int i = 0; i <= index - 2; i++) { // Run through all steps(index)

if (Bluetooth.available() > 0) { // Check for incomding data

dataIn = Bluetooth.readString();

if ( dataIn == "PAUSE") { // If button "PAUSE" is pressed

while (dataIn != "RUN") { // Wait until "RUN" is pressed again

if (Bluetooth.available() > 0) {

dataIn = Bluetooth.readString();

if ( dataIn == "RESET") {

break;

}

}

}

}

// If speed slider is changed

if (dataIn.startsWith("ss")) {

String dataInS = dataIn.substring(2, dataIn.length());

speedDelay = dataInS.toInt(); // Change servo speed (delay time)

}

}

// Servo 1

if (servo01SP[i] == servo01SP[i + 1]) {

}

if (servo01SP[i] > servo01SP[i + 1]) {

for ( int j = servo01SP[i]; j >= servo01SP[i + 1]; j--) {

servo01.write(j);

delay(speedDelay);

}

}

if (servo01SP[i] < servo01SP[i + 1]) {

for ( int j = servo01SP[i]; j <= servo01SP[i + 1]; j++) {

servo01.write(j);

delay(speedDelay);

}

}

// Servo 2

if (servo02SP[i] == servo02SP[i + 1]) {

}

if (servo02SP[i] > servo02SP[i + 1]) {

for ( int j = servo02SP[i]; j >= servo02SP[i + 1]; j--) {

servo02.write(j);

delay(speedDelay);

}

}

if (servo02SP[i] < servo02SP[i + 1]) {

for ( int j = servo02SP[i]; j <= servo02SP[i + 1]; j++) {

servo02.write(j);

delay(speedDelay);

}

}

// Servo 3

if (servo03SP[i] == servo03SP[i + 1]) {

}

if (servo03SP[i] > servo03SP[i + 1]) {

for ( int j = servo03SP[i]; j >= servo03SP[i + 1]; j--) {

servo03.write(j);

delay(speedDelay);

}

}

if (servo03SP[i] < servo03SP[i + 1]) {

for ( int j = servo03SP[i]; j <= servo03SP[i + 1]; j++) {

servo03.write(j);

delay(speedDelay);

}

}

// Servo 4

if (servo04SP[i] == servo04SP[i + 1]) {

}

if (servo04SP[i] > servo04SP[i + 1]) {

for ( int j = servo04SP[i]; j >= servo04SP[i + 1]; j--) {

servo04.write(j);

delay(speedDelay);

}

}

if (servo04SP[i] < servo04SP[i + 1]) {

for ( int j = servo04SP[i]; j <= servo04SP[i + 1]; j++) {

servo04.write(j);

delay(speedDelay);

}

}

// Servo 5

if (servo05SP[i] == servo05SP[i + 1]) {

}

if (servo05SP[i] > servo05SP[i + 1]) {

for ( int j = servo05SP[i]; j >= servo05SP[i + 1]; j--) {

servo05.write(j);

delay(speedDelay);

}

}

if (servo05SP[i] < servo05SP[i + 1]) {

for ( int j = servo05SP[i]; j <= servo05SP[i + 1]; j++) {

servo05.write(j);

delay(speedDelay);

}

}

// Servo 6

if (servo06SP[i] == servo06SP[i + 1]) {

}

if (servo06SP[i] > servo06SP[i + 1]) {

for ( int j = servo06SP[i]; j >= servo06SP[i + 1]; j--) {

servo06.write(j);

delay(speedDelay);

}

}

if (servo06SP[i] < servo06SP[i + 1]) {

for ( int j = servo06SP[i]; j <= servo06SP[i + 1]; j++) {

servo06.write(j);

delay(speedDelay);

}

}

}

}

}

Das ist die schaltung

Setze deinen Sketch wie schon geschrieben in Code-Tags.
Den Sketch im vorherigen Beitrag markieren und die Schaltfläche </> klicken.
Dann kann den auch jeder richtig lesen.

Und ich möchte nicht die Schaltung sehen, wie es sein soll, sondern wie es bei dir aussieht.
Also Foto posten.
Was für ein Netzteil verwendest du ?

Bitte gehe in Deinen Post, markiere dort den Teil, der den Code enthält und dann klicke auf das </> Symbol
Das ist sonst nicht verwertbar.
Danke.

Neben den Hinweisen der anderen Teilnehmer: Lösche bitte auch die unnötigen Leerzeilen und formatiere den Code ordentlich (+T in der IDE hilft Dir dabei)

Gruß Tommy

Hab mich erbarmt und die Codetags hinzugefügt.

@max663366
schon mal was von Spaghetticode gehört?

Ich definiere Spaghetticode auch als mehrfach geschriebenen Code der durch Arrays und Schleifen einfacher, kürzer und leserlcher machen könnte.

Grüße Uwe

Code alla Bolognese ? :nerd_face:

Eigentlich ist "alla Bolognese" , also mit Fleischrago nicht das typische Gericht aus Bologna. In Italien nennt man das "al ragú".
laut Gli spaghetti alla bolognese? Quelli veri non sono al ragù | La Cucina Italiana
ist die typishe Sosse aus Bologna mit Tunfisch und Tomaten.

Laut Bild im Atikel sind das Spaghetti in bianco ( Weiße Spaghetti, also Nudel mit gar nichts)

Grüße Uwe

1 Like

Spaghetti Bolo ist ( wie Döner Kebab ) ein typisch deutsches Gericht. :slight_smile:

Und wer nimmt die Leerzeilen raus und macht die Einrückungen? ( So les ich das immer noch nicht freiwillig.)

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.