Remove unneedes functions
This commit is contained in:
parent
0e162e9275
commit
a469ee0864
1 changed files with 2 additions and 13 deletions
|
@ -170,19 +170,11 @@ class LCD_HD44780(octoprint.plugin.StartupPlugin,
|
|||
GPIO.output(self.pin_e, GPIO.LOW)
|
||||
time.sleep(self._lcd_delay)
|
||||
|
||||
def on_printer_add_log(self, data):
|
||||
pass
|
||||
|
||||
def on_printer_add_message(self, data):
|
||||
pass
|
||||
|
||||
def on_printer_add_temperature(self, data):
|
||||
if not self._ClosedOrError:
|
||||
self._line4 = 'E{:3.0f}/{:3.0f} B{:3.0f}/{:3.0f}'.format(data['tool0']['actual'], data['tool0']['target'], data['bed']['actual'], data['bed']['target'])
|
||||
self._lcd_update()
|
||||
|
||||
def on_printer_received_registered_message(self, name, output):
|
||||
pass
|
||||
|
||||
def on_printer_send_current_data(self, data):
|
||||
self._line1 = data['state']['text'][:20].center(20)
|
||||
|
@ -204,14 +196,11 @@ class LCD_HD44780(octoprint.plugin.StartupPlugin,
|
|||
self._line3 = ''
|
||||
else:
|
||||
self._line2 = ''
|
||||
self._line3 = ''
|
||||
self._line4 = ''
|
||||
self._line3 = ' powered by'
|
||||
self._line4 = ' Octoprint'
|
||||
|
||||
self._lcd_update()
|
||||
|
||||
def on_printer_send_initial_data(self, data):
|
||||
pass
|
||||
|
||||
__plugin_name__ = "LCD: HD44780-compatible"
|
||||
|
||||
def __plugin_load__():
|
||||
|
|
Loading…
Reference in a new issue