-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
72 lines (51 loc) · 1.61 KB
/
main.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
#from machine import Pin, SPI
import _thread, gc
from time import sleep_ms, sleep, time
from Models.Api import Api
from Models.RpiPico import RpiPico
from Models.Display import Display
# Importo variables de entorno
import env
# Habilito recolector de basura
gc.enable()
# Rpi Pico Model
#controller = RpiPico(ssid=env.AP_NAME, password=env.AP_PASS, debug=env.DEBUG)
controller = RpiPico(debug=env.DEBUG)
#network_manager = NetworkManager(WIFI_CONFIG.COUNTRY, status_handler=status_handler)
#uasyncio.get_event_loop().run_until_complete(network_manager.client(WIFI_CONFIG.SSID, WIFI_CONFIG.PSK))
display = Display(controller=controller)
sleep_ms(10)
# Variables para el manejo de bloqueo con el segundo core
thread_lock = _thread.allocate_lock()
thread_lock_acquired = False
#gc.collect()
def thread0():
"""
Primer hilo para lecturas y envío de datos a las acciones del segundo hilo.
"""
# Momento de la última vez que se mostró por pantalla.
last_show_display_at = time()
display.create_frame()
#display.create_top_bar()
display.create_top_bar("sun_cloud", 19, "17:48")
display.create_home()
display.update()
sleep(30)
def thread1(sensors, wifi_status, voltage):
"""
Segundo hilo para acciones secundarias.
"""
pass
while True:
try:
thread0()
except Exception as e:
if env.DEBUG:
print('Error: ', e)
finally:
if env.DEBUG:
print('Memoria antes de liberar: ', gc.mem_free())
gc.collect()
if env.DEBUG:
print("Memoria después de liberar:", gc.mem_free())
sleep(5)