@@ -16,19 +16,19 @@ Introduction
16
16
CircuitPython library for the Sparkfun SerLCD displays. This library is ported from
17
17
`SparkFun SerLCD Arduino Library <https://github.com/sparkfun/SparkFun_SerLCD_Arduino_Library >`_
18
18
19
- `SparkFun 16x2 SerLCD - Black on RGB 3.3V (LCD-14072)<https://www.sparkfun.com/products/14072> `_
19
+ * `SparkFun 16x2 SerLCD - Black on RGB 3.3V (LCD-14072)<https://www.sparkfun.com/products/14072> `_
20
20
21
21
.. image :: https://cdn.sparkfun.com/r/140-140/assets/parts/1/1/9/2/5/14072-SparkFun_16x2_SerLCD_-_Black_on_RGB_3.3V-05.jpg
22
22
:target: https://www.sparkfun.com/products/14072
23
23
:alt: SparkFun 16x2 SerLCD - Black on RGB 3.3V (LCD-14072)
24
24
25
- `SparkFun 16x2 SerLCD - RGB on Black 3.3V (LCD-14073)<https://www.sparkfun.com/products/14073> `_
25
+ * `SparkFun 16x2 SerLCD - RGB on Black 3.3V (LCD-14073)<https://www.sparkfun.com/products/14073> `_
26
26
27
27
.. image :: https://cdn.sparkfun.com/r/140-140/assets/parts/1/1/9/2/6/14073-SparkFun_16x2_SerLCD_-_RGB_on_Black_3.3V-05.jpg
28
28
:target: https://www.sparkfun.com/products/14073
29
29
:alt: SparkFun 16x2 SerLCD - RGB on Black 3.3V (LCD-14073)
30
30
31
- `SparkFun 20x4 SerLCD - Black on RGB 3.3V (LCD-14074)<https://www.sparkfun.com/products/14074> `_
31
+ * `SparkFun 20x4 SerLCD - Black on RGB 3.3V (LCD-14074)<https://www.sparkfun.com/products/14074> `_
32
32
33
33
.. image :: https://cdn.sparkfun.com/r/140-140/assets/parts/1/1/9/2/7/14074-SparkFun_20x4_SerLCD_-_Black_on_RGB_3.3V-05.jpg
34
34
:target: https://www.sparkfun.com/products/14074
@@ -145,12 +145,12 @@ Usage Example
145
145
#
146
146
# serlcd = Sparkfun_SerLCD_SPI(spi, cs)
147
147
148
- # Enable Serial communication
148
+ # Enable UART Serial communication
149
149
# SerLCD is connected to the RPi via a USB to TTL 3.3v Serial Cable:
150
150
# https://www.sparkfun.com/products/12977
151
151
# https://www.adafruit.com/product/954
152
152
# import serial
153
- # from sparkfun_serlcd import Sparkfun_SerLCD_Serial
153
+ # from sparkfun_serlcd import Sparkfun_SerLCD_UART
154
154
#
155
155
# usb0 = serial.Serial(
156
156
# port='/dev/ttyUSB0',
@@ -160,7 +160,7 @@ Usage Example
160
160
# bytesize=serial.EIGHTBITS,
161
161
# timeout=1)
162
162
#
163
- # serlcd = Sparkfun_SerLCD_Serial (usb0)
163
+ # serlcd = Sparkfun_SerLCD_UART (usb0)
164
164
165
165
Contributing
166
166
============
0 commit comments