From 17123889f698e2339049bd18e7ece01b9c53e892 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 25 Apr 2020 13:27:41 -0400 Subject: heaters: Make heater.py an "extras" module The heater logic is an independent module that does not need to be treated as part of the "core" klipper code. Signed-off-by: Kevin O'Connor --- klippy/klippy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'klippy/klippy.py') diff --git a/klippy/klippy.py b/klippy/klippy.py index becbe113..d03e25a5 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -6,7 +6,7 @@ # This file may be distributed under the terms of the GNU GPLv3 license. import sys, os, optparse, logging, time, threading, collections, importlib import util, reactor, queuelogger, msgproto, homing -import gcode, configfile, pins, heater, mcu, toolhead +import gcode, configfile, pins, mcu, toolhead message_ready = "Printer is ready" @@ -123,7 +123,7 @@ class Printer: if self.bglogger is not None: pconfig.log_config(config) # Create printer components - for m in [pins, heater, mcu]: + for m in [pins, mcu]: m.add_printer_objects(config) for section_config in config.get_prefix_sections(''): self.try_load_module(config, section_config.get_name()) -- cgit v1.2.3-70-g09d2