start:arduino:pca9685
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
start:arduino:pca9685 [2022/04/12 08:58] – gerardadmin | start:arduino:pca9685 [2023/01/27 16:08] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 14: | Ligne 14: | ||
[[https:// | [[https:// | ||
+ | |||
+ | |||
+ | [[https:// | ||
+ | |||
+ | < | ||
+ | [Control 32 Servo motor using PCA9685 Module and ESP32 V4 EN](http:// | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== exemple avec un esp32 ==== | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | Les connexions I2C à l' | ||
+ | |||
+ | | ||
+ | | ||
+ | |||
+ | En fait, vous pouvez utiliser deux broches quelconques sur l' | ||
+ | |||
+ | Les broches GPIO 21 et 22 sont les broches par défaut si de nouvelles broches ne sont pas déclarées. | ||
+ | |||
+ | Vous remarquerez l' | ||
+ | |||
+ | Comme nous utilisons une logique de 3,3 volts, vous devez utiliser des valeurs comprises entre 2,4k et 3,3k. | ||
+ | |||
+ | Connexion des servomoteurs aux connecteurs 0 et 12, mais vous pouvez en choisir deux autres et ajouter d' | ||
+ | |||
+ | Lorsque vous regardez le code, vous verrez comment définir le branchement de votre moteur et comment adresser chaque moteur. | ||
+ | |||
+ | Pour une alimentation, | ||
+ | |||
+ | |||
+ | ===Code ESP32 PCA9685=== | ||
+ | |||
+ | Adafruit est une excellente source pour obtenir des modules PCA9685, et si vous connaissez Adafruit, vous saurez qu'ils ne vendent rien sans créer une documentation complète, des articles, des exemples de code et des bibliothèques. Le PCA9685 n'est pas différent, nous utiliserons donc une bibliothèque Adafruit qui fonctionne à la fois avec l' | ||
+ | |||
+ | Voici le croquis utilisé pour contrôler les deux servomoteurs à l'aide de l' | ||
+ | |||
+ | |||
+ | <code c PCA9685_ESP32.ino> | ||
+ | /* | ||
+ | ESP32 PCA9685 Servo Control | ||
+ | esp32-pca9685.ino | ||
+ | Driving multiple servo motors with ESP32 and PCA9685 PWM module | ||
+ | Use I2C Bus | ||
+ | |||
+ | DroneBot Workshop 2020 | ||
+ | https:// | ||
+ | */ | ||
+ | |||
+ | // Include Wire Library for I2C | ||
+ | #include < | ||
+ | |||
+ | // Include Adafruit PCA9685 Servo Library | ||
+ | #include < | ||
+ | |||
+ | // Creat object to represent PCA9685 at default I2C address | ||
+ | Adafruit_PWMServoDriver pca9685 = Adafruit_PWMServoDriver(0x40); | ||
+ | |||
+ | // Define maximum and minimum number of " | ||
+ | // Range from 0 to 4095 | ||
+ | // This determines the pulse width | ||
+ | |||
+ | #define SERVOMIN | ||
+ | #define SERVOMAX | ||
+ | |||
+ | // Define servo motor connections (expand as required) | ||
+ | #define SER0 0 // | ||
+ | #define SER1 12 //Servo Motor 1 on connector 12 | ||
+ | |||
+ | // Variables for Servo Motor positions (expand as required) | ||
+ | int pwm0; | ||
+ | int pwm1; | ||
+ | |||
+ | void setup() { | ||
+ | |||
+ | // Serial monitor setup | ||
+ | Serial.begin(115200); | ||
+ | |||
+ | // Print to monitor | ||
+ | Serial.println(" | ||
+ | |||
+ | // Initialize PCA9685 | ||
+ | pca9685.begin(); | ||
+ | |||
+ | // Set PWM Frequency to 50Hz | ||
+ | pca9685.setPWMFreq(50); | ||
+ | |||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
+ | // Move Motor 0 from 0 to 180 degrees | ||
+ | for (int posDegrees = 0; posDegrees <= 180; posDegrees++) { | ||
+ | |||
+ | // Determine PWM pulse width | ||
+ | pwm0 = map(posDegrees, | ||
+ | // Write to PCA9685 | ||
+ | pca9685.setPWM(SER0, | ||
+ | // Print to serial monitor | ||
+ | Serial.print(" | ||
+ | Serial.println(posDegrees); | ||
+ | delay(30); | ||
+ | } | ||
+ | |||
+ | // Move Motor 1 from 180 to 0 degrees | ||
+ | for (int posDegrees = 180; posDegrees >= 0; posDegrees--) { | ||
+ | |||
+ | // Determine PWM pulse width | ||
+ | pwm1 = map(posDegrees, | ||
+ | // Write to PCA9685 | ||
+ | pca9685.setPWM(SER1, | ||
+ | // Print to serial monitor | ||
+ | Serial.print(" | ||
+ | Serial.println(posDegrees); | ||
+ | delay(30); | ||
+ | } | ||
+ | |||
+ | // Move Motor 0 from 180 to 0 degrees | ||
+ | for (int posDegrees = 180; posDegrees >= 0; posDegrees--) { | ||
+ | |||
+ | // Determine PWM pulse width | ||
+ | pwm0 = map(posDegrees, | ||
+ | // Write to PCA9685 | ||
+ | pca9685.setPWM(SER0, | ||
+ | // Print to serial monitor | ||
+ | Serial.print(" | ||
+ | Serial.println(posDegrees); | ||
+ | delay(30); | ||
+ | } | ||
+ | |||
+ | |||
+ | // Move Motor 1 from 0 to 180 degrees | ||
+ | for (int posDegrees = 0; posDegrees <= 180; posDegrees++) { | ||
+ | |||
+ | // Determine PWM pulse width | ||
+ | pwm1 = map(posDegrees, | ||
+ | // Write to PCA9685 | ||
+ | pca9685.setPWM(SER1, | ||
+ | // Print to serial monitor | ||
+ | Serial.print(" | ||
+ | Serial.println(posDegrees); | ||
+ | delay(30); | ||
+ | } | ||
+ | |||
+ | |||
+ | } | ||
+ | </ | ||
+ |
/home/chanteri/www/fablab37110/data/attic/start/arduino/pca9685.1649746731.txt.gz · Dernière modification : 2023/01/27 16:08 (modification externe)