You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for the wonderful video. I hooked the center pin (+) up to the 3.3v rail, but it would not work consistently. By making the pins PULL_DOWN it worked perfectly! Thank you for your great work!
I change lines 14 to 16 of the file encoder.py to the following:
Thank you for the wonderful video. I hooked the center pin (+) up to the 3.3v rail, but it would not work consistently. By making the pins PULL_DOWN it worked perfectly! Thank you for your great work!
I change lines 14 to 16 of the file encoder.py to the following:
self.dt_pin = Pin(dt, Pin.IN, Pin.PULL_DOWN)
self.clk_pin = Pin(clk, Pin.IN, Pin.PULL_DOWN)
self.sw_pin = Pin(sw, Pin.IN, Pin.PULL_DOWN)
The text was updated successfully, but these errors were encountered: