-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
32 lines (25 loc) · 826 Bytes
/
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
#!/usr/bin/python3
import sys
import time
from Anemometer import Anemometer
if __name__ == "__main__":
anemometer = Anemometer()
## Inicio lecturas de datos
anemometer.start_read()
## Espera de 3 segundos recopilando los primeros datos
time.sleep(3)
count = 0
## Muestro constantemente los datos recopilados para probar, calibrar o debug
while True:
try:
## Cuando ha tomado 5 lecturas devuelve y resetea contadores
## para indicar que comienza una nueva medición.
count += 1
print('Contador:', count)
if (count % 5) == 0:
print(anemometer.get_all_datas())
else:
anemometer.debug()
except KeyboardInterrupt:
anemometer.stop_read()
sys.exit(0)