Hello,
I want to use motor shield, but it don't run...
I use this code :
=============================
int motorM1 = 11; // LED connectée sur la broche 9
void setup()
{
pinMode(motorM1, OUTPUT); // configure la broche en sortie
}
void loop()
{
analogWrite(motorM1, 512); // Résultat d'analogRead entre 0 to 1023
}
==========================
Thank you for help !