-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.py
43 lines (36 loc) · 1.16 KB
/
info.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
#!/usr/bin/python3
# -*- encoding: utf-8 -*-
# @author Raúl Caro Pastorino
# @copyright Copyright © 2019 Raúl Caro Pastorino
# @license https://wwww.gnu.org/licenses/gpl.txt
# @email public@raupulus.dev
# @web https://raupulus.dev
# @gitlab https://gitlab.com/raupulus
# @github https://github.com/raupulus
# @twitter https://twitter.com/raupulus
# Guía de estilos aplicada: PEP8
#######################################
# # Descripción # #
#######################################
# Este script muestra información sobre el estado de la raspberry como
# temperatura, ip, porcentaje de cpu en uso, memoria y disco duro.
#######################################
# # Importar Librerías # #
#######################################
import Oledssd1306
import time
try:
oled = Oledssd1306.Oledssd1306()
except:
print('No se ha podido detectar la pantalla por i2c')
exit(1)
while True:
try:
oled.informacion()
except Exception:
print(
'La pantalla cargó pero hay un error al pintar la información',
Exception
)
exit(1)
time.sleep(5)