2018-04-04 00:01:10 +03:00
|
|
|
# Support for a heated bed
|
|
|
|
#
|
|
|
|
# Copyright (C) 2018 Kevin O'Connor <kevin@koconnor.net>
|
|
|
|
#
|
|
|
|
# This file may be distributed under the terms of the GNU GPLv3 license.
|
|
|
|
|
|
|
|
def load_config(config):
|
2019-02-26 19:20:01 +03:00
|
|
|
pheater = config.get_printer().lookup_object('heater')
|
|
|
|
return pheater.setup_heater(config, 'B')
|