-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLCD Scrolling Text.py
More file actions
100 lines (76 loc) · 2.92 KB
/
LCD Scrolling Text.py
File metadata and controls
100 lines (76 loc) · 2.92 KB
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
# LCD Scrolling Text Python program example:
# Created by Joseph C. Richardson, GitHub.com
# Note: be mindful while working with
# electronics. There are mistakes that
# cannot be corrected should you ignore
# any basic electronics rules. Electronics
# demands basic math skills and knowledge
# of electronics components alike.
# Items needed are as follows:
# Raspberry Pi 4 = 1
# breadboard = 1
# LCD display = 1
# jumper wire = 4 +2 for the Rasp pi 4 fan
# Note: use two other jumper wires for
# the Raspberry Pi 4 fan, while in use/
# operation.
# LCD Scrolling Text Python program example:
# This Raspberry Pi 4 Python program allows
# users to learn all about how the LCD display
# works with scrolling text.
# We will use the breadboard method:
# GPIO.setmode(GPIO.BOARD)
# This method is for the GPIO pinouts
# not the GPIO numbers, such as BCM
# You can also use the Broadcom SOC
# Channel method if you prefer:
# GPIO.setmode(GPIO.BCM)
# This allows GPIO numbers, not GPIO
# pinouts, such as the breadboard
# method illustrates in our Python
# program example.
# import functions:
import RPi.GPIO as GPIO,drivers
from time import sleep as wait
GPIO.setmode(GPIO.BOARD) # breadboard method
GPIO.setwarnings(False) # disable setwarnings
display=drivers.Lcd() # enable the LCD display
display.lcd_clear() # clear the LCD screen
# Create variables for the latch, data bit and the clock.
# You can rename all these variables to any names you wish,
# but keep in mind that you must also rename any variables
# in your program as well. Click the Find and Replace command
# on the IDLE menu to make any renaming changes faster to cover
# any variables you want to rename. However, you should stick
# to meaningful names, so other programmers can learn and
# understand what's happening throughout the program's
# execution/run.
stop_program_message='''
print('Stop program Execution/run:')
print('cleanup/release all GPIO pinouts \
to LOW state.')'''
title='SCROLL LCD TEXT:'
text=('SCROLL LCD TEXT THE EASY WAY! ',
'SCROLLING LCD TEXT IS SO EASY NOW... ',
'WITH PYTHON PROGRAMMING. ')
while True:
try:
display.lcd_clear()
for x in range(3):
display.lcd_display_string(title,1)
display.lcd_display_string(text[x],2)
wait(.5)
for i in range(len(text[x])):
display.lcd_display_string(
text[x][i:i+16],2)
wait(0.2)
# Note: it is recommended that you setup
# a KeyboardInterrupt handler to force
# the GPIO pins to return to a low state/off.
# GPIO.cleanup() sets all GPIO pins to LOW/OFF
except KeyboardInterrupt:
exec(stop_program_message) # GPIO notification message
display.lcd_clear()
display.lcd_backlight(0)
GPIO.cleanup() # GPIO.cleanup() sets all GPIO pins to LOW/OFF
break