bonjour; j'ai telecharger un programme pour kit voiture sur internet, il y a des chose que je ne peux pas comprendre, et j'aimerais bien que vous m'aider pour passer cette difficulte.
question 1 : ``void Drive(int speed){`` ... c est quoi speed? pourquoi est elle en marron? est ce que c'est une fonction predefinit?.... elle n'est pas indiquer dans tout le programme.
question 2 : voir cette partie du programme
je comprend pas class? public?Code:public: //Method to define the motor pins Motor(int ENPin,int dPin1,int dPin2){ enablePin = ENPin; directionPin1 = dPin1; directionPin2 = dPin2; }; //Method to drive the motor 0~255 driving forward. -1~-255 driving backward void Drive(int speed){ if(speed>=0){ digitalWrite(directionPin1, LOW); digitalWrite(directionPin2, HIGH); } else{ digitalWrite(directionPin1, HIGH); digitalWrite(directionPin2, LOW); speed = - speed; } analogWrite(enablePin, speed); } };
'directionPin1 , directionPin2 , enablePin sur quels pin de l arduino? comment s est fait puisau il n y a aucune indication sur les ports.
-----