2022-12-23 14:30:13 +01:00
|
|
|
import bge # Bibliothèque Blender Game Engine (UPBGE)
|
2023-01-09 05:54:31 +01:00
|
|
|
import importlib
|
2023-01-06 21:23:44 +01:00
|
|
|
import time
|
2022-12-23 23:29:17 +01:00
|
|
|
import serial # Liaison série
|
|
|
|
import pyfirmata # Protocole Firmata
|
|
|
|
from serial.tools.list_ports import comports # Détection du port automatique
|
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
###############################################################################
|
|
|
|
# twin_serial.py
|
2023-01-14 07:49:53 +01:00
|
|
|
# @title: Gestion de la liaison série
|
2022-12-23 14:30:13 +01:00
|
|
|
# @project: Blender-EduTech
|
|
|
|
# @lang: fr
|
|
|
|
# @authors: Philippe Roy <philippe.roy@ac-grenoble.fr>
|
2023-01-14 07:49:53 +01:00
|
|
|
# @copyright: Copyright (C) 2022-2023 Philippe Roy
|
2022-12-23 14:30:13 +01:00
|
|
|
# @license: GNU GPL
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# UPBGE scene
|
|
|
|
scene = bge.logic.getCurrentScene()
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
# Récupérer le brochage du jumeau réel
|
2023-01-20 18:31:51 +01:00
|
|
|
system=importlib.import_module(scene.objects['System']['system']) # Système
|
2023-01-18 18:21:12 +01:00
|
|
|
pin_config = system.get_public_vars()
|
2023-01-09 05:54:31 +01:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Liaison série
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
##
|
|
|
|
# Recherche automatique du port
|
|
|
|
##
|
|
|
|
|
2023-01-06 21:23:44 +01:00
|
|
|
def autoget_port():
|
2022-12-23 14:30:13 +01:00
|
|
|
# USB Vendor ID, USB Product ID
|
|
|
|
board_dict={'microbit' :[3368, 516],
|
|
|
|
'uno' :[9025, 67],
|
|
|
|
'mega' :[9025, 66]}
|
|
|
|
for com in comports(): # Arduino Uno
|
|
|
|
if com.vid == board_dict["uno"][0] and com.pid == board_dict["uno"][1]:
|
|
|
|
return [com.device,"Arduino Uno"]
|
|
|
|
for com in comports(): # Arduino Mega
|
|
|
|
if com.vid == board_dict["mega"][0] and com.pid == board_dict["mega"][1]:
|
|
|
|
return [com.device,"Arduino Mega"]
|
|
|
|
return [None,""]
|
|
|
|
|
|
|
|
##
|
|
|
|
# Création de l'objet carte (protocole Firmata)
|
|
|
|
##
|
|
|
|
|
|
|
|
def board_init(port):
|
|
|
|
try:
|
|
|
|
return pyfirmata.Arduino(port)
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
##
|
|
|
|
# Création de l'objet serial (communication série)
|
|
|
|
##
|
|
|
|
|
|
|
|
def serial_init(port,speed):
|
|
|
|
try:
|
|
|
|
return serial.Serial(port,speed)
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
##
|
|
|
|
# Affiche la liste des cartes (communication série)
|
|
|
|
##
|
|
|
|
|
2023-01-06 21:23:44 +01:00
|
|
|
def devices():
|
2022-12-23 14:30:13 +01:00
|
|
|
for com in comports():
|
|
|
|
print ("Name : "+str(com.name)+"\n"
|
|
|
|
+" Device : "+str(com.device)+"\n"
|
|
|
|
+" Hardware ID : "+str(com.hwid)+"\n"
|
|
|
|
+" USB Vendor ID : "+str(com.vid)+"\n"
|
|
|
|
+" USB Product ID : "+str(com.pid)+"\n"
|
|
|
|
+" USB device location : "+str(com.location)+"\n"
|
|
|
|
+" USB manufacturer : "+str(com.manufacturer)+"\n"
|
|
|
|
+" USB product : "+str(com.product)+"\n"
|
|
|
|
+" Interface-specific : "+str(com.interface))
|
|
|
|
|
|
|
|
##
|
|
|
|
# Activation de la communication avec la carte de communication (Arduino, Micro:bit)
|
|
|
|
# Vitesse : 115200 -> 7 fps, 38400 -> 6 fps, 9600 -> 2 fps
|
|
|
|
# pyserial : baudrate=115200
|
|
|
|
# pyfirmata : baudrate=57600
|
|
|
|
##
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
def serial_open():
|
2022-12-23 14:30:13 +01:00
|
|
|
|
|
|
|
# UI : étape 1
|
|
|
|
scene.objects['Twins-text']['Text'] = "Connection en cours ..."
|
|
|
|
|
|
|
|
# Mise en place de la carte
|
|
|
|
speed = 57600
|
2023-02-15 17:56:49 +01:00
|
|
|
# speed = 115200
|
|
|
|
# speed = 9600
|
2023-01-20 18:31:51 +01:00
|
|
|
[device, board_name] =autoget_port() # Recherche automatique du port
|
2022-12-23 14:30:13 +01:00
|
|
|
if device is None:
|
|
|
|
scene.objects['System']['twins'] = False
|
|
|
|
scene.objects['Twins-text']['Text'] = "Aucune connection disponible : jumeau réel débranché."
|
|
|
|
return False
|
|
|
|
board = board_init(device)
|
|
|
|
if board is None:
|
|
|
|
scene.objects['System']['twins'] = False
|
|
|
|
scene.objects['Twins-text']['Text'] = "Aucune connection disponible : port "+device+" pas prêt."
|
|
|
|
return False
|
|
|
|
scene.objects['System']['twins'] = True
|
|
|
|
board_it = pyfirmata.util.Iterator(board) # Itérateur pour les entrées
|
|
|
|
board_it.start()
|
|
|
|
|
|
|
|
# UI : étape 2
|
|
|
|
if board =="":
|
|
|
|
scene.objects['Twins-text']['Text'] = "Connection ouverte : "+device+" - "+str(speed)+" baud."
|
|
|
|
else:
|
|
|
|
scene.objects['Twins-text']['Text'] = "Connection ouverte : "+board_name+" sur "+device+" à "+str(speed)+" baud."
|
2023-01-06 21:23:44 +01:00
|
|
|
time.sleep(0.1)
|
2023-01-07 00:01:01 +01:00
|
|
|
return (board)
|
2022-12-23 14:30:13 +01:00
|
|
|
|
|
|
|
##
|
|
|
|
# Fermeture de la communication série
|
|
|
|
##
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
def serial_close(board):
|
2023-01-07 10:42:19 +01:00
|
|
|
if scene.objects['System']['twins']:
|
|
|
|
scene.objects['Twins-text']['Text'] = "Connection fermée."
|
|
|
|
board.exit() # Fermer proprement la communication avec la carte
|
|
|
|
time.sleep(0.1)
|
|
|
|
scene.objects['System']['twins'] = False
|
2022-12-23 14:30:13 +01:00
|
|
|
|
|
|
|
# Configuration manuelle du port
|
2023-01-07 10:42:19 +01:00
|
|
|
# FIXME : plus tard
|
2023-01-06 21:23:44 +01:00
|
|
|
def config(port, speed):
|
2022-12-23 14:30:13 +01:00
|
|
|
pass
|
|
|
|
# global board
|
|
|
|
# global twins_serial
|
|
|
|
# if scene.objects['System']['twins']:
|
|
|
|
# serial_msg1 = "CF\n"
|
|
|
|
# twins_serial.write(serial_msg1.encode())
|
|
|
|
# tempo (1)
|
|
|
|
# serial_msg2 = str(speed)+"\n"
|
|
|
|
# twins_serial.write(serial_msg2.encode())
|
|
|
|
# tempo (1)
|
|
|
|
# serial_msg3 = str(temps_avancer)+"\n"
|
|
|
|
# twins_serial.write(serial_msg3.encode())
|
|
|
|
# tempo (1)
|
|
|
|
# serial_msg4 = str(temps_tourner)+"\n"
|
|
|
|
# twins_serial.write(serial_msg4.encode())
|
|
|
|
# tempo (1)
|
|
|
|
# serial_msg5 = "FC\n"
|
|
|
|
# twins_serial.write(serial_msg5.encode())
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
###############################################################################
|
|
|
|
# Jumeau
|
|
|
|
###############################################################################
|
|
|
|
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
2023-01-09 05:54:31 +01:00
|
|
|
# Créer une broche
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
def jumeau_get_pin(board, name, brochage):
|
|
|
|
for pin in brochage :
|
|
|
|
if pin ==name:
|
|
|
|
return board.get_pin(brochage[pin][0]+':'+str(brochage[pin][1])+':'+brochage[pin][2])
|
|
|
|
return None
|
|
|
|
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
2023-01-09 05:54:31 +01:00
|
|
|
# Activer le jumelage
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
def jumeau (brochage=None):
|
|
|
|
|
|
|
|
# Carte
|
|
|
|
board =serial_open()
|
|
|
|
scene.objects['System']['board']=board
|
|
|
|
# print ("jumeau : ", scene.objects['System']['board'])
|
|
|
|
|
|
|
|
# Brochage
|
|
|
|
if brochage is not None:
|
|
|
|
for pin in pin_config :
|
2023-02-03 10:27:45 +01:00
|
|
|
if len (pin_config[pin][1])>0:
|
|
|
|
scene.objects[pin_config[pin][0][0]][pin_config[pin][1][0]] = jumeau_get_pin(board, pin, brochage)
|
2023-01-09 05:54:31 +01:00
|
|
|
return board
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
2023-01-09 05:54:31 +01:00
|
|
|
# Désactiver le jumelage
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
def jumeau_stop ():
|
|
|
|
serial_close(scene.objects['System']['board'])
|
|
|
|
|
2023-02-01 06:06:50 +01:00
|
|
|
##
|
|
|
|
# Définir les modes d'activation du jumelage pour le systeme
|
|
|
|
##
|
|
|
|
|
|
|
|
def jumeau_mode_system (input_objs, output_objs, input_real, input_digital, output_real, output_digital):
|
|
|
|
|
|
|
|
# Entrées numériques
|
|
|
|
if input_digital:
|
|
|
|
for obj in input_objs:
|
|
|
|
scene.objects[obj]['prior']=True
|
|
|
|
else:
|
|
|
|
for obj in input_objs:
|
|
|
|
scene.objects[obj]['prior']=False
|
|
|
|
|
|
|
|
# Entrées réelles
|
|
|
|
if input_real:
|
|
|
|
for obj in input_objs:
|
|
|
|
scene.objects[obj]['prior_real']=True
|
|
|
|
else:
|
|
|
|
for obj in input_objs:
|
|
|
|
scene.objects[obj]['prior_real']=False
|
|
|
|
|
|
|
|
# Sorties numériques
|
|
|
|
if output_digital:
|
|
|
|
for obj in output_objs:
|
|
|
|
scene.objects[obj]['prior']=True
|
|
|
|
else:
|
|
|
|
for obj in output_objs:
|
|
|
|
scene.objects[obj]['prior']=False
|
|
|
|
|
|
|
|
# Sorties réelles
|
|
|
|
if output_real:
|
|
|
|
for obj in output_objs:
|
|
|
|
scene.objects[obj]['prior_real']=True
|
|
|
|
else:
|
|
|
|
for obj in output_objs:
|
|
|
|
scene.objects[obj]['prior_real']=False
|
|
|
|
|
|
|
|
##
|
|
|
|
# Définir les modes d'activation du jumelage pour un objet 3D
|
|
|
|
##
|
|
|
|
|
|
|
|
def jumeau_mode_object (name, priority_real=True, priority_digital=True):
|
|
|
|
scene.objects[pin_config[name][0][0]]['prior_real']=priority_real
|
|
|
|
scene.objects[pin_config[name][0][0]]['prior']=priority_digital
|
|
|
|
|
2023-01-09 05:54:31 +01:00
|
|
|
###############################################################################
|
|
|
|
# Message
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-23 14:30:13 +01:00
|
|
|
##
|
|
|
|
# Envoi d'un message vers la communication série
|
2023-01-07 10:42:19 +01:00
|
|
|
# FIXME : plus tard
|
2022-12-23 14:30:13 +01:00
|
|
|
##
|
|
|
|
|
|
|
|
# def serie_msg(text):
|
|
|
|
# global twins_serial
|
|
|
|
# text2= text+"\n"
|
|
|
|
# scene.objects['Twins-text']['Text'] = "Communication : envoi message : "+text
|
|
|
|
# twins_serial.write(text2.encode())
|
|
|
|
|
|
|
|
##
|
|
|
|
# Mise en écoute de jumeau numérique (figeage de la scène)
|
2023-01-07 10:42:19 +01:00
|
|
|
# FIXME : plus tard
|
2022-12-23 14:30:13 +01:00
|
|
|
##
|
|
|
|
|
|
|
|
# def twins_listen(cont):
|
|
|
|
# global twins_serial
|
|
|
|
# if scene.objects['System']['twins']:
|
|
|
|
# if scene.objects['System']['twins_readline'] != "":
|
|
|
|
# scene.objects['Twins-text']['Text'] = "Écoute de la connection figeage de la scène.... Message reçu : "+scene.objects['System']['twins_readline']
|
|
|
|
# else:
|
|
|
|
# scene.objects['Twins-text']['Text'] = "Écoute de la connection figeage de la scène..."
|
|
|
|
# if cont.sensors['Property'].positive:
|
|
|
|
# if scene.objects['System']['twins_listen'] :
|
|
|
|
# serial_msg = twins_serial.readline()
|
|
|
|
# if serial_msg is not None:
|
|
|
|
# scene.objects['System']['twins_readline'] = str(serial_msg)
|
|
|
|
# # scene.objects['Twins-text']['Text'] = "Message reçu : "+str(serial_msg)
|
|
|
|
# scene.objects['System']['twins_listen'] = False
|
|
|
|
|
|
|
|
##
|
|
|
|
# Réception d'un message de la communication série
|
2023-01-07 10:42:19 +01:00
|
|
|
# FIXME : plus tard
|
2022-12-23 14:30:13 +01:00
|
|
|
##
|
|
|
|
|
|
|
|
# def serie_rcpt():
|
|
|
|
# # scene.objects['Twins-text']['Text'] = "Écoute de la \nconnection\n figeage de \n la scène"
|
|
|
|
# scene.objects['System']['twins_readline'] = ""
|
|
|
|
# scene.objects['System']['twins_listen'] = True
|
|
|
|
# while scene.objects['System']['twins_readline'] == "":
|
|
|
|
# if scene.objects['System']['twins_readline'] != "":
|
|
|
|
# break
|
|
|
|
# # scene.objects['Twins-text']['Text'] = "Connection\nouverte :\n"+scene.objects['System']['twins_port']+"\n"+str(scene.objects['System']['twins_speed'])+" baud"
|
|
|
|
# return scene.objects['System']['twins_readline']
|