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

MicroPython driver for TM1637 quad 7-segment LED modules

Results 5 micropython-tm1637 issues
Sort by recently updated
recently updated
newest added

Hi All, i am having this display: ![image](https://user-images.githubusercontent.com/53837030/161205907-90bfecfd-54e1-4d88-bab2-850ff717ab72.png) ![image](https://user-images.githubusercontent.com/53837030/161205923-1be1e797-e950-4ad5-bf39-2fa5d95b425d.png) My code is: ``` #!/usr/bin/python import tm1637 from time import sleep tm = tm1637.TM1637(clk=21, dio=20) tm.brightness(0) def swap(segs): length = len(segs)...

Hi there, I looked at your source code and I wondered, is there any reason why you do not use a machine I2C API, for example the [I2C](https://docs.micropython.org/en/latest/library/machine.I2C.html) class from...

Hello, I was excperiencing some freezing / hanging behaviour with some tm1637 7-segment displays and this library on a Raspberry Pi Pico board. I was able to fix it modifiyng...

Add optional arguments to number function to allow leading ceros.

adding decimal point version would be nice