Skip to content

Commit 6d5badc

Browse files
authored
Merge pull request #887 from cogliano/patch-4
Removed debug print statement, extra space
2 parents df0cc26 + 04c824f commit 6d5badc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

PyPortal_EZ_Make_Oven/code.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ def play(self, duration=0.1):
7777
# otherwise, use refresh() in loop to turn off long beep
7878
time.sleep(duration)
7979
self.stop()
80-
print("play", duration, self.start)
8180

8281
def stop(self):
8382
if pyportal._speaker_enable.value:
@@ -101,7 +100,7 @@ def __init__(self, pin):
101100
with open("/profiles/" + self.config["profile"] + ".json", mode="r") as fpr:
102101
self.sprofile = json.load(fpr)
103102
fpr.close()
104-
i2c = busio.I2C(board.SCL, board. SDA, frequency=200000)
103+
i2c = busio.I2C(board.SCL, board.SDA, frequency=200000)
105104
try:
106105
self.sensor = MCP9600(i2c, self.config["sensor_address"], "K")
107106
except ValueError:

0 commit comments

Comments
 (0)