This commit is contained in:
Tanaes 2022-02-05 12:44:41 -05:00
parent 03f319c5f5
commit 504f0ff5e1
2 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,7 @@ class TM1637(object):
clk_pin,
dat_pin):
self.clk_pin = clock_pin
self.clk_pin = clk_pin
self.dat_pin = dat_pin
try:

View File

@ -1,6 +1,5 @@
import threading,logging,json,time,datetime
from oven import Oven
from display import TM1637
import config
log = logging.getLogger(__name__)