├── .gitignore ├── LICENSE ├── README.md ├── config └── TM1638_config.h ├── example ├── ATmega32-GCC │ └── counter │ │ ├── main.c │ │ └── makefile └── ESP-IDF │ └── counter │ ├── .gitignore │ ├── CMakeLists.txt │ └── main │ ├── CMakeLists.txt │ └── main.c ├── port ├── ATmega32-GCC │ ├── TM1638_platform.c │ └── TM1638_platform.h ├── ESP32-IDF │ ├── TM1638_platform.c │ └── TM1638_platform.h ├── STM32-HAL │ ├── TM1638_platform.c │ └── TM1638_platform.h └── STM32-LL │ ├── TM1638_platform.c │ └── TM1638_platform.h └── src ├── TM1638.c └── include └── TM1638.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/README.md -------------------------------------------------------------------------------- /config/TM1638_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/config/TM1638_config.h -------------------------------------------------------------------------------- /example/ATmega32-GCC/counter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/example/ATmega32-GCC/counter/main.c -------------------------------------------------------------------------------- /example/ATmega32-GCC/counter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/example/ATmega32-GCC/counter/makefile -------------------------------------------------------------------------------- /example/ESP-IDF/counter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/example/ESP-IDF/counter/.gitignore -------------------------------------------------------------------------------- /example/ESP-IDF/counter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/example/ESP-IDF/counter/CMakeLists.txt -------------------------------------------------------------------------------- /example/ESP-IDF/counter/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/example/ESP-IDF/counter/main/CMakeLists.txt -------------------------------------------------------------------------------- /example/ESP-IDF/counter/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/example/ESP-IDF/counter/main/main.c -------------------------------------------------------------------------------- /port/ATmega32-GCC/TM1638_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/ATmega32-GCC/TM1638_platform.c -------------------------------------------------------------------------------- /port/ATmega32-GCC/TM1638_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/ATmega32-GCC/TM1638_platform.h -------------------------------------------------------------------------------- /port/ESP32-IDF/TM1638_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/ESP32-IDF/TM1638_platform.c -------------------------------------------------------------------------------- /port/ESP32-IDF/TM1638_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/ESP32-IDF/TM1638_platform.h -------------------------------------------------------------------------------- /port/STM32-HAL/TM1638_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/STM32-HAL/TM1638_platform.c -------------------------------------------------------------------------------- /port/STM32-HAL/TM1638_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/STM32-HAL/TM1638_platform.h -------------------------------------------------------------------------------- /port/STM32-LL/TM1638_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/STM32-LL/TM1638_platform.c -------------------------------------------------------------------------------- /port/STM32-LL/TM1638_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/port/STM32-LL/TM1638_platform.h -------------------------------------------------------------------------------- /src/TM1638.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/src/TM1638.c -------------------------------------------------------------------------------- /src/include/TM1638.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdaSystem/TM1638/HEAD/src/include/TM1638.h --------------------------------------------------------------------------------