https://github.com/SeTSeR/esp-tm1637
A driver for TM1637 display for ESP32
https://github.com/SeTSeR/esp-tm1637
embedded-hal-driver esp32 hardware-support no-std rust
Last synced: 5 months ago
JSON representation
A driver for TM1637 display for ESP32
- Host: GitHub
- URL: https://github.com/SeTSeR/esp-tm1637
- Owner: SeTSeR
- License: apache-2.0
- Created: 2023-11-30T16:21:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-19T18:06:21.000Z (over 1 year ago)
- Last Synced: 2024-11-23T13:12:46.484Z (5 months ago)
- Topics: embedded-hal-driver, esp32, hardware-support, no-std, rust
- Language: Rust
- Homepage:
- Size: 37.1 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Platform-agnostic driver for TM1637
This repository contains a driver for seven-segment display TM1637.
It was implemented using `embedded-hal`, so it should be platform-agnostic,
though examples use ESP32. Several examples are included, e. g. simple digital
[clocks](https://github.com/SeTSeR/esp32-tm1637/blob/master/examples/clocks.rs)
or just [sending some bytes around](https://github.com/SeTSeR/esp32-tm1637/blob/master/examples/send-digits.rs).# Checking out
Building:
```sh
cargo build
```Running an example:
```sh
cargo run --profile=lto --example=clocks
```