Skip to content

Commit cb55882

Browse files
authored
Merge pull request #901 from cogliano/master
Word wrap fixes, changed default sensor address
2 parents de3524e + 4db264a commit cb55882

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PyPortal_EZ_Make_Oven/codecalibrate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import digitalio
55
from adafruit_mcp9600 import MCP9600
66

7-
SENSOR_ADDR = 0X60
7+
SENSOR_ADDR = 0X67
88

99
i2c = busio.I2C(board.SCL, board.SDA,frequency=200000)
1010
sensor = MCP9600(i2c,SENSOR_ADDR,"K")
@@ -17,8 +17,8 @@ def oven_control(enable=False):
1717
oven.value = enable
1818

1919
check_temp = 100
20-
print("This program will determine calibration settings for your oven ")
21-
print("to use with the EZ Make Oven Controller.\n\n")
20+
print("This program will determine calibration settings ")
21+
print("for your oven to use with the EZ Make Oven.\n\n")
2222
print("Calibration will start in 10 seconds...")
2323
time.sleep(10)
2424
print("Starting...")

0 commit comments

Comments
 (0)