Modern, gpiod-based library for TM1637-based LED display modules
Project description
python-tm1637 is a library for interfacing with TM1637-based 4-digit 7-segment LED display modules, using the Linux GPIO character device interface (gpiod).
Features
- Hardware-agnostic implementation using the modern Linux GPIO character device interface
- Automatic detection of the available GPIO chip device for the given clock and data GPIO lines
- Uses the official
libgpiodPython bindings:gpiod v2+ - Text display
- Scrolling text
- Hexadecimal display (0x0000 to 0xffff)
- Number display (-999 to 9999 or two -9 to 99)
- Temperature display (-9 to 99 with degree Celsius or -9.9 to 99.9 with degree)
- Support for decimal point displays through
TM1637Decimalclass
Installation
pip install python-tm1637
Getting Started
import time
import tm1637
# Initialize display connected to GPIO 23 & 24 at /dev/gpiochip4
display = tm1637.TM1637(clk=23, dio=24, chip_path="/dev/gpiochip4")
# Write segments directly
display.write([127, 127, 127, 127]) # 8888
time.sleep(1)
# Turn off all LEDs
display.write([0, 0, 0, 0])
time.sleep(1)
# Display text
display.show("HIYA")
time.sleep(1)
# Display a number
display.number(8888)
time.sleep(1)
API Reference
TM1637 Class
Constructor
TM1637(clk, dio, *, chip_path="/dev/gpiochip*", brightness=7)
clk: GPIO pin number for the clock linedio: GPIO pin number for the data I/O linebrightness: Initial brightness level (0-7, default: 7)chip_path: Path to the GPIO chip device (defaults to auto-detection)
Properties
brightness: Get or set the display brightnesschip_path: Get the path to GPIO chip device in useclk: Get the GPIO pin number of the clock line passed to constructordio: Get the GPIO pin number of the data I/O line passed to constructor
Methods
write(segments, pos=0): Write raw segmentsshow(string, sep=False, fill=" "): Display a stringscroll(string, delay=0.25): Scroll a string across the displayhex(val): Display a hexadecimal value (0x0000 to 0xffff)number(num, zero_pad=True): Display an integer value (-999 to 9999)numbers(num1, num2, sep=True, zero_pad=True): Display two integers values (-9 to 99)temperature(num): Display a temperature integer valuetemperature_decimal(num): Display a temperature decimal value
Static Methods
encode_char(char): Convert a character to its segment representationencode_digit(digit): Convert a digit to its segment representationencode_string(string): Convert a string to an array of segments
TM1637Decimal Class
Extends the TM1637 class to enable support for display modules having a decimal point after each digit.
Permissions
To access the GPIO chip device without root permissions, the user must be in the gpio group. To add the current user to the gpio group:
sudo usermod -aG gpio $USER
sudo reboot
Hardware Connections
| TM1637 | Pin |
|---|---|
| CLK | GPIO X |
| DIO | GPIO Y |
| VCC | 3.3V or 5V |
| GND | Ground |
where
TM1637(clk=X, dio=Y)
Examples
Clock Display
import time
import tm1637
display = tm1637.TM1637(clk=23, dio=24)
colon = True
while True:
time.sleep(1 - time.time()%1)
lt = time.localtime()
display.numbers(lt.tm_hour, lt.tm_min, sep=colon)
colon = not colon
Temperature Display
import tm1637
display = tm1637.TM1637(clk=23, dio=24)
display.temperature(23) # 23*C
display.temperature_decimal(23.5) # 23:5*
Scrolling Text
import tm1637
display = tm1637.TM1637(clk=23, dio=24)
display.scroll("HELLO WORLD", delay=0.1)
Sources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_tm1637-1.1.5.tar.gz.
File metadata
- Download URL: python_tm1637-1.1.5.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be42d4572da6d897188374306a31dde2865d5e93b6fabdaab94625c87d4f6ffc
|
|
| MD5 |
6d4e2a42a9e678edeefb172198f5fd6c
|
|
| BLAKE2b-256 |
f7b4f8f71c2cfa9c77c65651e61f9d7f5d7e104c8c1a8fee0c0c7cbf9fe86206
|
File details
Details for the file python_tm1637-1.1.5-py3-none-any.whl.
File metadata
- Download URL: python_tm1637-1.1.5-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1433612702b6e7dc11a534e75ff6bff3ace60f47d7c531f99d35e2f67f284901
|
|
| MD5 |
e0371a1e9b258bffa2e20c892016cd03
|
|
| BLAKE2b-256 |
c399eba4508706f5c0bedd4b3e6b6ef912896ee5d877377418758ffc2b06048e
|