diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-01-19 23:46:01 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-01-28 12:19:26 -0500 |
commit | d166d1f69208b0b5a5eb32d6795c2b7a9485ad63 (patch) | |
tree | 1823ea67e777bafeb7a212ec4f313cc1330a9681 /klippy/klippy.py | |
parent | 9399911490a8163ea40b14eac1431ff469eeaf3e (diff) | |
download | kutter-d166d1f69208b0b5a5eb32d6795c2b7a9485ad63.tar.gz kutter-d166d1f69208b0b5a5eb32d6795c2b7a9485ad63.tar.xz kutter-d166d1f69208b0b5a5eb32d6795c2b7a9485ad63.zip |
fan: Move fan code to extras directory
The print cooling fan and printer heater_fan are independent modules
that can reside in the extras directory.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 2bc5269d..0c28ba2d 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -7,7 +7,7 @@ import sys, os, optparse, logging, time, threading import collections, ConfigParser, importlib import util, reactor, queuelogger, msgproto -import gcode, pins, mcu, chipmisc, toolhead, extruder, heater, fan +import gcode, pins, mcu, chipmisc, toolhead, extruder, heater message_ready = "Printer is ready" @@ -209,7 +209,7 @@ class Printer: m.add_printer_objects(self, config) for section in self.fileconfig.sections(): self._try_load_module(config, section) - for m in [chipmisc, toolhead, extruder, heater, fan]: + for m in [chipmisc, toolhead, extruder, heater]: m.add_printer_objects(self, config) # Validate that there are no undefined parameters in the config file valid_sections = { s: 1 for s, o in self.all_config_options } |