arduino-tm1637 icon indicating copy to clipboard operation
arduino-tm1637 copied to clipboard

Arduino library for using a 4 digit seven segment display with TM1636 or TM1637 driver IC

Results 26 arduino-tm1637 issues
Sort by recently updated
recently updated
newest added

Hello, the library is pretty cool, but is it possible to display decimal dot? Thanks in advance.

enhancement

Reflect version change in library.properties so PlatformIO's crawler will update this library. PlatformIO still has version 1.1.0 simply because library.properties still reads that the current version is 1.1.0 instead of...

Hi, I just built using platformio, and simply including the lib as a dependency as `SevenSegmentTM1637` in `lib_deps` causes the build error: ``` .pio/libdeps/nano/SevenSegmentTM1637/src/SevenSegmentFun.cpp:187:80: error: no 'void SevenSegmentFun::bouncingBall(uint16_t, uint16_t, bool)'...

// ==============================INCLUDES========================================= #include "SevenSegmentTM1637.h" #include "SevenSegmentExtended.h" // Date and time functions using a DS1307 RTC connected via I2C and Wire lib #include #include "RTClib.h" #include #include #include // ====================================================================== //...

The logic for printing single bars is erroneous; [the condition](https://github.com/bremme/arduino-tm1637/blob/29726d350e0e501e9fe2328444b91bb951cc95bf/src/SevenSegmentFun.cpp#L29) will always be false when that code is reached (>=0 has to be false already, so obviously >=1 will be...

Fun's printLevelVertical is doesn't ever display single bars, only double bars. That's because its logic is bugged: The[ first conditional](https://github.com/bremme/arduino-tm1637/blob/29726d350e0e501e9fe2328444b91bb951cc95bf/src/SevenSegmentFun.cpp#L27) checks `barsOn-2*i+1 >=0` which means that when that's false, the...

Hello, is it possible to add a fuction that flips the TM1637-based 7-segment 4-digit display, so the numbers (time) are showing as rotated 180 degrees? I'm building a timer that...

Some minor cleanup to make things look prettier. Sorry if it looks nitpicky :) This library was the only one that seemed to work with my TM1637 module. This is...

Greetings I have three TM1637 0.56" Displays but none of them work with the ESP8266 NodeMCU. It simply turns the Led on the backplate but it doesn't show anything on...