-
Notifications
You must be signed in to change notification settings - Fork 0
/
Coche.py
164 lines (138 loc) · 5.48 KB
/
Coche.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import random
import json
import os
import os.path
import time
import keyboard
import paho.mqtt.client as mqtt
from json import JSONDecodeError
####MATRICULA DEL COCHE A ENVIAR AL EDGE####
matricula = "2450GDF"
limite = None
####TOPIC DEL BROKER AL QUE SE SUSCRIBE LA BAT####
topic_pub = f"gesys/edge/vehiculo"
topic_sub = f"gesys/vehiculo/{matricula}/cargaMaxima"
# callback despues de establecer connexion
def on_connect(client, userdata, flags, rc):
# QUALITY OF SERVICE que deseamos (0, 1 o 2 de menor a mayor calidad)
qosClient = 2
print('(%s)' % client._client_id.decode("utf-8"), 'connected to broker')
client.subscribe(topic_sub, qosClient)
# callback del mensaje recibido
def on_message(client, userdata, message):
global limite
# message es el mensaje que se recibe del broker
msgTopic = message.topic
msgPayload = message.payload.decode("utf-8")
msgQOS = message.qos
print('------------------------------')
print('Data received!')
print('topic: %s' % msgTopic)
print('payload: %s' % msgPayload)
print('qos: %d' % msgQOS)
print('------------------------------')
try:
msgPayloadJSON = json.loads(msgPayload)
limite = msgPayloadJSON["battery"] # aquí obtenemos el porcentaje hasta donde se carga el coche
except JSONDecodeError:
print("No es un json")
# función para enviar al edge la matricula detectada
def publish(client):
time.sleep(1)
MQTT_MSG = json.dumps({"battery":bateria, "matricula":matricula});
#msgSent = f"messages: {matricula}"
result = client.publish(topic_pub, MQTT_MSG)
# result: [0, 1]
status = result[0]
if status == 0:
print(f"Send `{MQTT_MSG}` to topic `{topic_pub}`")
else:
print(f"Failed to send message to topic {topic_pub}")
client = mqtt.Client(client_id='PiCar', clean_session=True)
client.on_connect = on_connect
client.on_message = on_message
client.loop_start()
client.connect(host="craaxkvm.epsevg.upc.es", port=23702)
def mosquito(data):
# creamos suscriptor
# publicamos mensaje del cliente al broker
if data == 'limite':
publish(client)
elif data == 'battery':
publish(client)
#print("Waiting to recive message from broker...")
#client.loop_forever()
#print("Data recieved, conection with broker closed!")
#time.sleep(1)
bateria = 20
km = 400
def clear(): return os.system('cls' if os.name in ('nt', 'dos') else 'clear') # Limpiar terminal
def printa(bateria, tempo, km):
print(f'\n\t[{bateria}%] [' + '❚' * bateria + ' ' * (100-bateria) + ']') # Mostrar bateria
print(f'\n\tTiempo restante de batería: {tempo} segundos') #mostrar tiempo restante
print(f'\n\tKilómetros de autonomía restantes: {km} km') #mostrar autonomía en km restante
def printad(bateria, tempo):
print(f'\n\t[{bateria}%] [' + '❚' * bateria + ' ' * (100-bateria) + ']') # Mostrar bateria
print(f'\n\tTiempo restante de carga: {tempo} segundos') #mostrar tiempo restante
def descarga(tiempod):
global bateria
tempo = bateria*tiempod #tiempo restante descarga
global km
if bateria > 0: # Si la bateria es mayor a 0 descargar bateria
while bateria > 0 and tempo > 0: # Descargar siempre que la bateria y el tempo sea mayor a 0
try:
# Cortar descarga de bateria cuando se presiona la tecla q
if keyboard.is_pressed('q'):
break
else:
printa(bateria, tempo, km)
time.sleep(tiempod) # Esperar tiempo designado
clear()
bateria -= 1
tempo -= tiempod
km -= 4
except Exception as e:
pass
printa(bateria, tempo, km)
def carga_x(tiempoc):
global bateria
global km
global limite
if bateria < 99: # Si la bateria es menor a 99 cargar bateria
mosquito('limite')
while limite == None:
time.sleep(1)
tempo = limite*tiempoc #tiempo restante de la carga
#Cargar siempre que la batería sea menor a la suma de la
#cantidad a cargar y la batería actual y menor que 100
while bateria <= limite and bateria <= 99 and tempo > 0:
try:
printad(bateria, tempo)
client.unsubscribe(topic_sub)
mosquito('battery')
time.sleep(tiempoc) # Esperar tiempo designado
clear()
if bateria != limite:
bateria += 1
tempo -= tiempoc
km += 4
except Exception as e:
pass
else:
print('\t Batería ya cargada')
if __name__ == "__main__":
tiempod = 3 # Tiempo total descarga = 300 min/100 = 1% cada 3 min = 180s modulo 60 = 3 segundos
tiempoc = 1 # Tiempo total carga = 100 min/100 = 1% cada 1 min = 60s modulo 60 = 1 segundo
bateria = 25
tempo = 1
while True:
comando = int(input('\t1: Cargar y 2: Descargar\n\t'))
clear()
if comando == 1:
carga_x(tiempoc) # Carga bateria completa
printad(bateria, tempo)
elif comando == 2:
descarga(tiempod) # Descargar bateria
else:
print('Comando Erroneo')
print(f'\n\tBateria al {bateria}%')