diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-03-17 13:29:03 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-03-17 13:46:36 -0400 |
commit | ef8c464d9777699dcedb0325c666d2a4b134e78a (patch) | |
tree | fec9d9d9fb580feca9f79851933cf7108d7380db /klippy/klippy.py | |
parent | 66eefa1da87cb33ee664830d33f7fcebe7ee031a (diff) | |
download | kutter-ef8c464d9777699dcedb0325c666d2a4b134e78a.tar.gz kutter-ef8c464d9777699dcedb0325c666d2a4b134e78a.tar.xz kutter-ef8c464d9777699dcedb0325c666d2a4b134e78a.zip |
output_pin: Move pwm and digital output pins to new module in extras/
Rename the digital_output, pwm_output, and static_pwm_output config
sections to output_pin and move to a new module 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 69ceea50..9a16d8f0 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 +import gcode, pins, mcu, toolhead, extruder, heater message_ready = "Printer is ready" @@ -209,7 +209,7 @@ class Printer: m.add_printer_objects(self, config) for section in fileconfig.sections(): self.try_load_module(config, section) - for m in [chipmisc, toolhead, extruder, heater]: + for m in [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 } |