TM1637 on LoPy
-
Hi there,
Trying to get the TM1637 working on the LoPy using the https://github.com/mcauser/micropython-tm1637 but I'm not having any luck on the digits. Has anyone run a TM1637 through a LoPy yet?
Thanks,
Martijn
-
@Smeedy
You must slightly modify this library.
Addfrom machine import Pin
and e.g. instead
self.clk.init(clk.IN)
writeself.clk.init(Pin.IN)
self.dio.init(self.dio.OUT)
writeself.dio.init(Pin.OUT)
instead
self.clk.low()
writeself.clk.value(0)
instead
Pin(4)
writePin('P4')