probleme motor sheild

Salut tous monde

j'ai un petit soucis avec ma carte arduino uno et un motor sheild avec un L298P de fundumoto
des que je la connecte a carte arduino et verse le programme motor_test sa se mets a buzzer non stop, j'ai essayé avec d'autre programme sans utilisation du motor sheild mais elle est toujours dessus bah sa marche bien je comprend pas si quelqu'un a une explication je suis preneur

je vous remercie d'avance

bonjour,
bah, si on a pas de code, de lien et plus d'infos, comment répondre?

pour les info
carte arduino uno
motor sheil Fundumoto

quand le motor sheild est connecté a l'arduino et que le code est versé sa buzz en continu

voici le code

// Adafruit Motor shield library
// copyright Adafruit Industries LLC, 2009
// this code is public domain, enjoy!

#include <AFMotor.h>

AF_DCMotor motor(2);

void setup() {
  Serial.begin(9600);           // set up Serial library at 9600 bps
  Serial.println("Motor test!");

  // turn on motor
  motor.setSpeed(200);
 
  motor.run(RELEASE);
}

void loop() {
  uint8_t i;
  
  Serial.print("tick");
  
  motor.run(FORWARD);
  for (i=0; i<255; i++) {
    motor.setSpeed(i);  
    delay(10);
 }
 
  for (i=255; i!=0; i--) {
    motor.setSpeed(i);  
    delay(10);
 }
  
  Serial.print("tock");

  motor.run(BACKWARD);
  for (i=0; i<255; i++) {
    motor.setSpeed(i);  
    delay(10);
 }
 
  for (i=255; i!=0; i--) {
    motor.setSpeed(i);  
    delay(10);
 }
  

  Serial.print("tech");
  motor.run(RELEASE);
  delay(1000);
}

un petit tour sur la lib afmotor et tu as la réponse

#define MOTOR2_B 4
et sur un site de ton shield
Above the bluetooth connectors is another blue connector. From right to left, this is D3, GND (D4 is connected to the buzzer),

http://rc.mired.org/2017/09/the-fundumoto-motor-shield.html

un peu de lecture
http://www.droking.com/wp-content/uploads/2015/12/091035_L298P-Motor-Shield-Instruction.pdf

Bonjour Shade50

As tu résolu ton problème de buzzer en continu sur la Fundumoto connectée arduino ?

Merci