2022-08-14 08:03:07 +02:00
|
|
|
import bge # Bibliothèque Blender Game Engine (UPBGE)
|
2022-10-05 18:52:03 +02:00
|
|
|
import time
|
2022-08-14 08:03:07 +02:00
|
|
|
from rp_lib import * # Bibliothèque Ropy
|
|
|
|
|
|
|
|
###############################################################################
|
2022-08-19 15:43:20 +02:00
|
|
|
# rp_cmd.py
|
2022-08-26 12:41:18 +02:00
|
|
|
# @title: Commandes pour le Rover Ropy
|
2022-08-14 08:03:07 +02:00
|
|
|
# @project: Ropy (Blender-EduTech)
|
|
|
|
###############################################################################
|
|
|
|
|
2022-10-19 23:41:15 +02:00
|
|
|
###############################################################################
|
2022-09-14 22:03:24 +02:00
|
|
|
# Initialisation du niveau :
|
|
|
|
# Niveau 1 : Les premiers pas de Ropy
|
|
|
|
# Niveau 2 : Ma première fonction
|
|
|
|
# Niveau 3 : Sécuriser Ropy
|
|
|
|
# Niveau 4 : Partir au bout du monde
|
|
|
|
# Niveau 5 : Faire face à l'inconnu
|
|
|
|
# Niveau 6 : Se rendre utile
|
|
|
|
###############################################################################
|
|
|
|
|
2022-08-14 08:03:07 +02:00
|
|
|
###############################################################################
|
|
|
|
# Fonctions
|
|
|
|
###############################################################################
|
|
|
|
|
2022-11-06 14:49:34 +01:00
|
|
|
def mrp_avancer():
|
|
|
|
rp_avancer()
|
|
|
|
rp_marquer()
|
|
|
|
|
2022-08-14 08:03:07 +02:00
|
|
|
###############################################################################
|
|
|
|
# Commandes
|
|
|
|
###############################################################################
|
|
|
|
|
2022-08-26 12:41:18 +02:00
|
|
|
def commandes():
|
2022-08-14 08:03:07 +02:00
|
|
|
|
2022-10-09 20:26:45 +02:00
|
|
|
# Ecrire votre code ici ...
|
2022-11-06 14:49:34 +01:00
|
|
|
rp_jumeau('/dev/ttyACM1', 115200)
|
2022-11-05 05:08:39 +01:00
|
|
|
rp_tempo(1)
|
2022-11-06 14:49:34 +01:00
|
|
|
print (1)
|
|
|
|
rp_tempo(1)
|
|
|
|
print (2)
|
|
|
|
rp_tempo(1)
|
|
|
|
print (3)
|
|
|
|
rp_tempo(1)
|
|
|
|
print (4)
|
2022-11-04 16:30:35 +01:00
|
|
|
|
2022-11-06 14:49:34 +01:00
|
|
|
|
|
|
|
# rp_serie_msg("Go !")
|
|
|
|
# txt =""
|
|
|
|
# while True:
|
|
|
|
# rp_tempo(0.1)
|
|
|
|
# pass
|
|
|
|
# txt=rp_serie_rcpt()
|
|
|
|
# print (txt)
|
|
|
|
# if txt !="":
|
|
|
|
# print (txt)
|
|
|
|
# break
|
|
|
|
|
|
|
|
# rp_jumeau_config(50, 20, 90) # (vitesse, temps_avancer, temps_rotation)
|
|
|
|
# rp_tempo(1)
|
|
|
|
|
|
|
|
# rp_gauche()
|
|
|
|
# mrp_avancer()
|
|
|
|
# rp_droite()
|
|
|
|
# mrp_avancer()
|
|
|
|
# mrp_avancer()
|
|
|
|
# mrp_avancer()
|
|
|
|
# mrp_avancer()
|
|
|
|
# rp_droite()
|
|
|
|
# mrp_avancer()
|
|
|
|
# mrp_avancer()
|
|
|
|
|
|
|
|
rp_jumeau_close()
|
2022-10-09 20:26:45 +02:00
|
|
|
rp_fin() # A garder
|
2022-08-22 21:56:46 +02:00
|
|
|
|
2022-08-14 08:03:07 +02:00
|
|
|
###############################################################################
|
|
|
|
# En: Externals calls << DONT CHANGE THIS SECTION >>
|
|
|
|
# Fr: Appels externes << NE PAS MODIFIER CETTE SECTION >>
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
if __name__=='start':
|
2022-08-26 12:41:18 +02:00
|
|
|
thread_cmd_start(commandes)
|
2022-08-14 08:03:07 +02:00
|
|
|
if __name__=='stop':
|
2022-08-23 03:39:37 +02:00
|
|
|
thread_cmd_stop()
|