-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest0.py
48 lines (36 loc) · 1.39 KB
/
test0.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
#!/usr/bin/python
# -*- encoding: utf-8 -*-
#######################################
# ### Raúl Caro Pastorino ### #
## ## ## ##
### # https://github.com/fryntiz/ # ###
## ## ## ##
# ### www.fryntiz.es ### #
#######################################
# El objetivo de este script de pruebas es crear un bucle con mensajes sencillos
# Ejecutando este script podemos saber si la parte de hardware está correctamente conectada
##############################
## Importar Librerías ##
##############################
import time # Importamos la libreria time --> time.sleep
import LCD_LIB_16x2 as LCD
import RPi.GPIO as GPIO # Importar librería para controlar hardware GPIO
##############################
## Variables ##
##############################
# Inicializar Pantalla
LCD.lcd_init()
while True:
# Enviando mensaje a cada línea
LCD.lcd_string(" Rasbperry Pi ",LCD.LINE_1)
LCD.lcd_string("16x2 LCD Pruebas",LCD.LINE_2)
time.sleep(3) # 3 segundos delay
# Enviando mensaje a cada línea
LCD.lcd_string("1234567890123456",LCD.LINE_1)
LCD.lcd_string("abcdefghijklmnop",LCD.LINE_2)
time.sleep(3) # 3 segundos delay
# Enviando mensaje a cada línea
LCD.lcd_string(" Fryntiz ",LCD.LINE_1)
LCD.lcd_string(" www.fryntiz.es ",LCD.LINE_2)
time.sleep(10)
GPIO.cleanup()