mirror of
https://forge.apps.education.fr/blender-edutech/blender-edutech-tutoriels.git
synced 2024-01-27 09:42:33 +01:00
Test de la commande des servomoteurs
This commit is contained in:
parent
6a0b6340f8
commit
431edd39b3
@ -3,5 +3,6 @@
|
||||
### Programmes de test du Tutoriel 6 (Développement de jumeau numérique) :
|
||||
|
||||
- servo-test.ino : Commande simple du servo-moteur
|
||||
- servo-test.py : Commande simple du servo-moteur via pyFirmata
|
||||
- manette-test.ino : Commande des servo-moteurs à la manette Grove (4 boutons + joystick) avec retour à l'horizontale via le capteur inertiel (IMU)
|
||||
- cam_bille-test.py : Détection de la bille par vision (caméra + OpenCV+ matplotlib)
|
||||
|
@ -11,11 +11,11 @@ import pyfirmata
|
||||
###############################################################################
|
||||
|
||||
# Communication avec la carte Arduino
|
||||
carte = pyfirmata.Arduino('COM3') # Windows
|
||||
# carte = pyfirmata.Arduino('COM3') # Windows
|
||||
carte = pyfirmata.Arduino('/dev/ttyACM0') # GNU/Linux
|
||||
print("Communication Carte Arduino établie")
|
||||
|
||||
servo = board.get_pin('d:9:s') # Servo sur broche D9
|
||||
servo = carte.get_pin('d:9:s') # Servo sur broche D9
|
||||
|
||||
try :
|
||||
while True: # Boucle infinie
|
||||
|
Loading…
Reference in New Issue
Block a user