2023-01-18 18:21:12 +01:00
from porcou_lib import * # Bibliothèque utilisateur du portail coulissant
2022-12-11 08:40:31 +01:00
###############################################################################
# porcou_cmd.py
# @title: Commandes du portail coulissant
###############################################################################
###############################################################################
2022-12-18 00:55:45 +01:00
# Instructions élémentaires pour le portail coulissant
2022-12-11 08:40:31 +01:00
#
# Actions (ordre = True ou False) :
2022-12-22 08:11:43 +01:00
# - Gyrophare : gyr(True | False)
# - Ouvrir le portail (moteur sens trigo) : mot_o(True | False)
# - Fermer le portail (moteur sens horaire) : mot_f(True | False)
2023-02-01 06:06:50 +01:00
# - Définir la vitesse du moteur : mot_vitesse (vitesse) , vitesse en rad / s, si vitesse est omis la valeur par défaut est 125.6 rad /s ( 20 tr / s ))
2022-12-22 08:11:43 +01:00
# - Emetteur pour le capteur barrage IR : ir_emet(True | False)
2022-12-11 08:40:31 +01:00
#
2022-12-18 00:55:45 +01:00
# Capteurs (valeur retournée = True ou False) :
2022-12-13 02:42:31 +01:00
# - Capteur fin de course portail ouvert : fdc_o()
# - Capteur fin de course portail fermé : fdc_f()
2022-12-11 08:40:31 +01:00
# - Capteur barrage IR (absence d'obstacle) : ir_recep()
#
2022-12-23 14:30:13 +01:00
# Consignes du pupitre (valeur retournée = True ou False) :
# - Bouton poussoir coté rue : bp_ext()
# - Bouton poussoir coté cour : bp_int()
2022-12-11 08:40:31 +01:00
#
2022-12-18 00:55:45 +01:00
# Gestion du temps :
# - Temporisation en seconde : tempo(duree)
2023-02-01 06:06:50 +01:00
# - Réinitialisation de la valeur du temp (t) : reset_t()
#
# Acquisition de données :
# - Lancer l'enregistrement : daq([variable1, variable2, ... ])
# - Afficher les graphiques : plot([variable1, variable2, ... ])
#
# Jumelage :
# - Démarrer le jumelage : jumeau({brochage})
# - Arrêter le jumelage : jumeau_stop({brochage})
# - Définir les règles d'activation : jumeau_mode({brochage})
2022-12-11 08:40:31 +01:00
#
###############################################################################
2023-01-31 18:37:22 +01:00
# Brochage du portail coulissant
brochage = {
' bp_ext ' : [ ] , ' bp_int ' : [ ] ,
' fdc_o ' : [ ] , ' fdc_f ' : [ ] ,
' mot_o ' : [ ] , ' mot_f ' : [ ] ,
' gyr ' : [ ] ,
' ir_emet ' : [ ] , ' ir_recep ' : [ ] }
2022-12-11 08:40:31 +01:00
###############################################################################
# Fonctions
###############################################################################
###############################################################################
# Commandes
###############################################################################
def commandes ( ) :
2022-12-18 00:55:45 +01:00
2023-01-19 02:27:47 +01:00
# Init -> Ouverture
2023-01-18 18:21:12 +01:00
while fdc_o ( ) == False :
gyr ( True )
mot_f ( False )
mot_o ( True )
mot_o ( False )
gyr ( False )
2023-01-19 15:35:57 +01:00
print ( " " )
2023-01-18 18:21:12 +01:00
2023-01-31 18:37:22 +01:00
# Données
2023-01-25 06:03:02 +01:00
# daq(['mot_angle', 'mot_vitesse', 'portail_x', 'portail_vitesse'])
2023-01-31 18:37:22 +01:00
reset_t ( )
2023-01-25 22:38:26 +01:00
daq ( [ ' bp_ext ' , ' bp_ext_r ' , ' bp_int ' , ' bp_int_r ' , ' fdc_o ' , ' fdc_o_r ' , ' fdc_f ' , ' fdc_f_r ' , ' mot_o ' , ' mot_f ' , ' gyr ' , ' mot_angle ' , ' mot_vitesse ' , ' portail_x ' , ' portail_vitesse ' , ' ir_emet ' , ' ir_recep ' , ' ir_recep_r ' ] )
2023-01-25 06:03:02 +01:00
# daq(['bp_ext', 'bp_ext_r', 'bp_int', 'bp_int_r', 'fdc_o', 'fdc_o_r', 'fdc_f', 'fdc_f_r', 'mot_o', 'mot_f', 'gyr'])
2023-01-31 18:37:22 +01:00
plot ( [ ' mot_angle ' , ' mot_vitesse ' , ' portail_x ' , ' portail_vitesse ' ] )
# plot([['bp_ext', 'bp_ext_r'], ['bp_int', 'bp_int_r'], ['fdc_o', 'fdc_o_r'], ['fdc_f', 'fdc_f_r'], 'mot_o', 'mot_f', 'gyr', ['mot_angle', 'mot_vitesse', 'portail_x', 'portail_vitesse']])
# Jumelage
2023-02-01 06:06:50 +01:00
# jumeau_mode(True,True, False, False)
# jumeau_mode()
2023-01-18 18:21:12 +01:00
# Fermeture
2023-02-01 06:06:50 +01:00
mot_vitesse ( 1256 ) # Vitesse par défaut 125,6 rad /s ( 20 tr / s )
2023-01-18 06:06:15 +01:00
while fdc_f ( ) == False :
gyr ( True )
mot_o ( False )
mot_f ( True )
mot_f ( False )
gyr ( False )
2023-02-01 06:06:50 +01:00
tempo ( 1 )
jumeau_mode_object ( ' gyr ' , True , False )
tempo ( 1 )
# jumeau_mode(True, True, True, True)
2023-01-18 18:21:12 +01:00
# Ouverture
2023-02-01 06:06:50 +01:00
mot_vitesse ( ) # Vitesse par défaut 125,6 rad /s ( 20 tr / s )
mot_vitesse ( 2000 ) # Vitesse par défaut 125,6 rad /s ( 20 tr / s )
2023-01-18 06:06:15 +01:00
while fdc_o ( ) == False :
gyr ( True )
mot_f ( False )
mot_o ( True )
mot_o ( False )
gyr ( False )
2023-01-28 17:24:21 +01:00
2023-01-07 10:42:19 +01:00
fin ( ) # A garder
2023-01-25 22:38:26 +01:00
2023-01-28 17:24:21 +01:00
###############################################################################
# En: External call << DONT CHANGE THIS SECTION >>
# Fr: Appel externe << NE PAS MODIFIER CETTE SECTION >>
###############################################################################
2022-12-11 08:40:31 +01:00
if __name__ == ' start ' :
2023-01-28 17:24:21 +01:00
start ( commandes )
2022-12-11 08:40:31 +01:00
if __name__ == ' stop ' :
2023-01-07 00:01:01 +01:00
stop ( )