Arduino nano every Fehlermeldung ?

#include <Nano_Every_WS2812B.h>

int motorPin1 = 8;

int motorPin2 = 9;

int motorPin3 = 10;

int motorPin4 = 11;

int delayTime = 500;

void setup() {

PinMode(motorPin1, OUTPUT);

PinMode(motorPin2, OUTPUT);

PinMode(motorPin3, OUTPUT);

PinMode(motorPin4, OUTPUT);

}

void loop() {

digitalWrite(motorPin1,HIGH);

digitalWrite(motorPin2,LOW);

digitalWrite(motorPin3,LOW);

digitalWrite(motorPin4,LOW);

delay(delayTime);

digitalWrite(motorPin1,LOW);

digitalWrite(motorPin2,HIGH);

digitalWrite(motorPin3,LOW);

digitalWrite(motorPin4,LOW);

delay(delayTime);

digitalWrite(motorPin1,LOW);

digitalWrite(motorPin2,LOW);

digitalWrite(motorPin3,HIGH);

digitalWrite(motorPin4,LOW);

delay(delayTime);

digitalWrite(motorPin1,LOW);

digitalWrite(motorPin2,LOW);

digitalWrite(motorPin3,LOW);

digitalWrite(motorPin4,HIGH);

delay(delayTime);

}

Im englischen Teil des Forum müssen die Beiträge und Diskussionen in englischer Sprache verfasst werden.
Deswegen wurde diese Diskussion in den deutschen Teil des Forums verschoben.

mfg ein Moderator.

Hey,
Es wäre hilfreich wenn du den Fehler und die Verkabelung auch schickst.
LG

Wozu ist das notwendig?

ändere das mal in

usw.

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