Skip to content

Commit cb1180c

Browse files
committed
Fixed typos
1 parent f470f34 commit cb1180c

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This is a demo project for a library to control TM1637 LED 7-segment display using the ESP-32 IDF toolchain [ESP-IDF](https://github.com/espressif/esp-idf).
66

7-
Please note that this is actually a demo project. The actual library is in the components folder.
7+
Please note that this is actually a demo project. The library is in the components folder.
88

99
![Image](images/20240911_025121-crop.jpg "icon")
1010

@@ -44,7 +44,7 @@ idf.py flash
4444

4545
## Tested hardware
4646

47-
| Part # | Size | Pins |
47+
| Part # | Size | Pins |
4848
| -------- | --------- | ---------- |
4949
| 5643BS-1 | 0.56" | 12 |
5050
| 8041BS-1 | 0.80" | 12 |
@@ -59,6 +59,7 @@ The source is available from [GitHub cfrankb/esp32-tm1637plus-cpp](https://githu
5959

6060
The code in this project is licensed under the MIT license - see LICENSE for details.
6161

62-
Inital idea based on the Micropython implementation library, written by Mike Causer Copyright (c) 2016
62+
Initial idea based on the Micropython implementation library, written by Mike Causer Copyright (c) 2016
63+
https://github.com/mcauser/micropython-tm1637
6364

6465
The project is also based in part on this ESP-32 ESP-IDF library: https://github.com/petrows/esp-32-tm1637

components/esp-32-tm1637plus/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ The source is available from [GitHub cfrankb/esp32-tm1637plus-cpp](https://githu
4545

4646
The code in this project is licensed under the MIT license - see LICENSE for details.
4747

48-
Inital idea based on the Micropython implementation library, written by Mike Causer Copyright (c) 2016
48+
Initial idea based on the Micropython implementation library, written by Mike Causer Copyright (c) 2016
4949

5050
This project is also based in part on: https://github.com/petrows/esp-32-tm1637

components/esp-32-tm1637plus/include/tm1637plus.h

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
/*
2+
C++ version for the ESP-IDF by Francois Blanchette.
3+
https://github.com/cfrankb/esp32-tm1637plus-cpp
4+
5+
MicroPython TM1637 quad 7-segment LED display driver
6+
https://github.com/mcauser/micropython-tm1637
7+
8+
MIT License
9+
Copyright (c) 2016 Mike Causer
10+
Copyright (c) 2024 Francois Blanchette
11+
12+
Permission is hereby granted, free of charge, to any person obtaining a copy
13+
of this software and associated documentation files (the "Software"), to deal
14+
in the Software without restriction, including without limitation the rights
15+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16+
copies of the Software, and to permit persons to whom the Software is
17+
furnished to do so, subject to the following conditions:
18+
19+
The above copyright notice and this permission notice shall be included in all
20+
copies or substantial portions of the Software.
21+
22+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28+
SOFTWARE.
29+
*/
30+
31+
132
#ifndef __TM1637___H
233
#define __TM1637___H
334
#include <inttypes.h>

0 commit comments

Comments
 (0)