From 52929e3af60098d136652e1688a574b9e36ca356 Mon Sep 17 00:00:00 2001 From: jbruce Date: Thu, 21 Oct 2021 11:07:44 -0400 Subject: [PATCH] removed max-31856 requirements from config.py and commented out import. this should be the sane default for simulations to work. --- config.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index f2c51c1..1931eee 100644 --- a/config.py +++ b/config.py @@ -1,5 +1,7 @@ import logging -from lib.max31856 import MAX31856 + +# uncomment this if using MAX-31856 +#from lib.max31856 import MAX31856 ######################################################################## # @@ -35,7 +37,8 @@ gpio_heat = 23 # Switches zero-cross solid-state-relay max31855 = 1 max31856 = 0 # see lib/max31856.py for other thermocouple_type, only applies to max31856 -thermocouple_type = MAX31856.MAX31856_S_TYPE +# uncomment this if using MAX-31856 +#thermocouple_type = MAX31856.MAX31856_S_TYPE ### Thermocouple Connection (using bitbang interfaces) gpio_sensor_cs = 27