2022-12-11 08:40:31 +01:00
|
|
|
from porcou_lib import * # Bibliothèque portail coulissant
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# 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-13 06:42:48 +01:00
|
|
|
# - Gyrophare : gyr (True|False)
|
2022-12-11 08:40:31 +01:00
|
|
|
# - Ouvrir le portail (moteur sens trigo) : mot_o (True|False)
|
|
|
|
# - Fermer le portail (moteur sens horaire) : mot_f (True|False)
|
|
|
|
# - Emetteur pour le capteur barrage IR : ir_emet(True|False)
|
|
|
|
#
|
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-18 00:55:45 +01:00
|
|
|
# Pupitre (valeur retournée = True ou False) :
|
2022-12-11 08:40:31 +01:00
|
|
|
# - Bouton poussoir coté rue : bp_ext()
|
|
|
|
# - Bouton poussoir coté cour : bp_int()
|
|
|
|
#
|
2022-12-18 00:55:45 +01:00
|
|
|
# Gestion du temps :
|
|
|
|
# - Temporisation en seconde : tempo(duree)
|
2022-12-11 08:40:31 +01:00
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2022-12-18 06:18:30 +01:00
|
|
|
# Brochage du jumeau réel
|
2022-12-18 08:39:44 +01:00
|
|
|
brochage={
|
|
|
|
'bp_ext' : [2,'d','i'],
|
|
|
|
'ebp_int' : [3,'d','i'],
|
|
|
|
'fdc_o' : [4,'d','i'],
|
|
|
|
'fdc_f' : [5,'d','i'],
|
|
|
|
'mot_o' : [6,'d','o'],
|
|
|
|
'mot_f' : [7,'d','o'],
|
|
|
|
'gyr' : [8,'d','o'],
|
|
|
|
'ir_emett' : [9,'d','o'],
|
|
|
|
'ir_recept' : [10,'d','i']}
|
2022-12-18 06:18:30 +01:00
|
|
|
|
2022-12-11 08:40:31 +01:00
|
|
|
###############################################################################
|
|
|
|
# Fonctions
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Commandes
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
def commandes():
|
2022-12-18 06:18:30 +01:00
|
|
|
jumeau(brochage)
|
2022-12-18 00:55:45 +01:00
|
|
|
for i in range (5):
|
2022-12-12 11:50:20 +01:00
|
|
|
gyr(True)
|
2022-12-18 06:18:30 +01:00
|
|
|
tempo(1)
|
2022-12-18 00:55:45 +01:00
|
|
|
gyr(False)
|
2022-12-18 06:18:30 +01:00
|
|
|
tempo(1)
|
2022-12-18 00:55:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
# # Mise en place : Fermeture
|
|
|
|
# while (fdc_f() ==False) :
|
|
|
|
# gyr(True)
|
|
|
|
# mot_f(True)
|
|
|
|
# mot_f(False)
|
|
|
|
# gyr(False)
|
2022-12-12 11:50:20 +01:00
|
|
|
|
2022-12-18 00:55:45 +01:00
|
|
|
# # Fonctionnement normal
|
|
|
|
# while True :
|
2022-12-12 11:50:20 +01:00
|
|
|
|
2022-12-18 00:55:45 +01:00
|
|
|
# # Ouverture
|
|
|
|
# if bp_int() or bp_ext() :
|
|
|
|
# while fdc_o() ==False:
|
|
|
|
# gyr(True)
|
|
|
|
# mot_o(True)
|
|
|
|
# gyr(False)
|
|
|
|
# mot_o(False)
|
2022-12-12 11:50:20 +01:00
|
|
|
|
2022-12-18 00:55:45 +01:00
|
|
|
# tempo(2) # Temporisation
|
2022-12-12 11:50:20 +01:00
|
|
|
|
2022-12-18 00:55:45 +01:00
|
|
|
# # Fermeture
|
|
|
|
# while fdc_f() ==False:
|
|
|
|
# gyr(True)
|
|
|
|
# mot_f(True)
|
|
|
|
# gyr(False)
|
|
|
|
# mot_f(False)
|
2022-12-12 11:50:20 +01:00
|
|
|
|
|
|
|
# # Ecrire votre code ici ...
|
|
|
|
# gyr(True) # Activer le gyrophare
|
|
|
|
# while True:
|
|
|
|
# pass
|
2022-12-18 00:55:45 +01:00
|
|
|
|
2022-12-13 02:42:31 +01:00
|
|
|
fin() # A garder
|
2022-12-11 08:40:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# En: External call << DONT CHANGE THIS SECTION >>
|
|
|
|
# Fr: Appel externe << NE PAS MODIFIER CETTE SECTION >>
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
if __name__=='start':
|
|
|
|
thread_cmd_start(commandes)
|
|
|
|
if __name__=='stop':
|
|
|
|
thread_cmd_stop()
|