Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/indigo6alpha/stm8s-tm1637
TM1637 C library for STM8 MCUs
https://github.com/indigo6alpha/stm8s-tm1637
c gpio stm8 stm8s103f3 tm1637
Last synced: about 2 months ago
JSON representation
TM1637 C library for STM8 MCUs
- Host: GitHub
- URL: https://github.com/indigo6alpha/stm8s-tm1637
- Owner: indigo6alpha
- Created: 2018-06-03T03:46:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T03:44:34.000Z (over 6 years ago)
- Last Synced: 2024-08-02T15:25:55.969Z (5 months ago)
- Topics: c, gpio, stm8, stm8s103f3, tm1637
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 11
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TM1637 C library for STM8 MCUs
======A library to configure and control TM1637 4-digit 7-segment display module. This library also contains the GPIO and CLK headers for STM8 MCUs.
Requirements
---- STM8s MCU (STM8S103F3 is referenced in this code)
- STLink-V2 programmer module
- SDCC Compiler (**Do not** use the sdcc package from the Ubuntu repositories. Download the [latest version here](http://sdcc.sourceforge.net/snap.php))
- SDCC libraries (Use ``apt-get install sdcc-libraries`` on Linux)
- [stm8flash](https://github.com/vdudouyt/stm8flash) tool (Add this to the PATH or add the correct path the Makefile before building)Build demo
---``make clean``
``make``
``make flash`` (or ``make sudoflash`` in case superuser permissions are required to access stlink-v2)
Thanks
---**vdudouyt** for the [stm8flash](https://github.com/vdudouyt/stm8flash) tool
**bitbank2** for the original [tm1637](https://github.com/bitbank2/tm1637) C library