Skip to content

Commit 6dbdb87

Browse files
committed
upd
1 parent 59e2bbb commit 6dbdb87

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ uint8_t* buffer; // доступ к буферу
7474
7575
### TM1637
7676
```cpp
77-
Disp1637Colon(uint8_t DIO, uint8_t CLK); // Модуль 4 цифры + двоеточие
77+
Disp1637Colon(uint8_t DIO, uint8_t CLK, bool dots); // Модуль 4 цифры + двоеточие
7878
Disp1637_4(uint8_t DIO, uint8_t CLK); // Модуль 4 цифры + точки
7979
Disp1637_6(uint8_t DIO, uint8_t CLK); // Модуль 6 цифр + точки
8080

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=GyverSegment
2-
version=1.4.3
2+
version=1.4.4
33
author=AlexGyver <[email protected]>
44
maintainer=AlexGyver <[email protected]>
55
sentence=Powerful library for controlling 7-segment indicators

src/display/Disp1637Colon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Disp1637Colon : public Driver1637, public SegBuffer {
99
public:
1010
// пины DIO, CLK
11-
Disp1637Colon(uint8_t DIO, uint8_t CLK, bool USE_DOTS = false) : Driver1637(DIO, CLK), SegBuffer(buffer, 4, USE_DOTS) {
11+
Disp1637Colon(uint8_t DIO, uint8_t CLK, bool dots = false) : Driver1637(DIO, CLK), SegBuffer(buffer, 4, dots) {
1212
update();
1313
}
1414

0 commit comments

Comments
 (0)