Skip to content

Commit 9caeb1b

Browse files
committed
Improve example text
1 parent 43dde4e commit 9caeb1b

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

examples/ht16k33_matrix_multi_display.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,7 @@
1919
i2c = busio.I2C(board.SCL, board.SDA)
2020

2121
# Create the matrix class.
22-
# This creates a 16x8 matrix:
23-
# matrix = matrix.Matrix16x8(i2c)
24-
# Or this creates a 16x8 matrix backpack:
25-
# matrix = matrix.MatrixBackpack16x8(i2c)
26-
# Or this creates a 8x8 matrix:
27-
# matrix = matrix.Matrix8x8(i2c)
28-
# Or this creates a 8x8 bicolor matrix:
29-
# matrix = matrix.Matrix8x8x2(i2c)
30-
# Finally you can optionally specify a custom I2C address of the HT16k33 like:
22+
# This creates a 16x8 matrix with multiple displays:
3123
matrix = matrix.Matrix16x8(i2c, address=(0x70, 0x71))
3224

3325
# Clear the matrix.

examples/ht16k33_segments_multi_display.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

4-
# Basic example of setting digits on a LED segment display.
4+
# Basic example of setting digits on two LED segment displays.
55
# This example and library is meant to work with Adafruit CircuitPython API.
6-
# Author: Tony DiCola
6+
# Author: Melissa LeBlanc-Williams
77
# License: Public Domain
88

99
import time
@@ -23,10 +23,6 @@
2323
display = segments.Seg7x4(i2c, address=(0x70, 0x71))
2424
# Or this creates a 14 segment alphanumeric 4 character display:
2525
# display = segments.Seg14x4(i2c, address=(0x70, 0x71))
26-
# Or this creates a big 7 segment 4 character display
27-
# display = segments.BigSeg7x4(i2c)
28-
# Finally you can optionally specify a custom I2C address of the HT16k33 like:
29-
# display = segments.Seg7x4(i2c, address=0x70)
3026

3127
# Clear the display.
3228
display.fill(0)

0 commit comments

Comments
 (0)