Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
175f13bbde | |||
8a9a2fe401 | |||
8a2e732663 |
@ -3,11 +3,11 @@ layout: plugin
|
||||
|
||||
id: estop
|
||||
title: Emergency STOP! button
|
||||
description: Adds an emergency stop (gcode M112) button to the sidebar.
|
||||
description: Adds an emergency stop button to the sidebar.
|
||||
author: ntoff
|
||||
license: AGPLv3
|
||||
|
||||
date: 2017-03-23
|
||||
date: 2017-12-02
|
||||
|
||||
homepage: https://github.com/ntoff/OctoPrint-Estop
|
||||
source: https://github.com/ntoff/OctoPrint-Estop
|
||||
@ -21,10 +21,10 @@ tags:
|
||||
|
||||
|
||||
screenshots:
|
||||
- /assets/img/plugins/estop/enabled.PNG
|
||||
- url: /assets/img/plugins/estop/enabled.PNG
|
||||
alt: enabled
|
||||
caption: Enabled (logged in and operational)
|
||||
- /assets/img/plugins/estop/disabled.PNG
|
||||
- url: /assets/img/plugins/estop/disabled.PNG
|
||||
alt: disabled
|
||||
caption: Disabled (logged out or non operational)
|
||||
|
||||
@ -42,4 +42,6 @@ compatibility:
|
||||
- macos
|
||||
---
|
||||
|
||||
Adds a nice big emergency stop button that sends M112 to the printer in the case of an emergency.
|
||||
Adds a nice big emergency stop button that (by default) sends M112 to the printer in the case of an emergency. If your printer uses a different E-Stop command, there's a settings page entry to allow changing the command sent.
|
||||
|
||||
Please do be aware that this button is no substitute for human interaction in the case of a real emergency. How your printer responds to M112 depends entirely on its firmware.
|
@ -23,7 +23,7 @@ class EstopPlugin(octoprint.plugin.StartupPlugin,
|
||||
)
|
||||
def get_template_configs(self):
|
||||
return [
|
||||
dict(type="sidebar", name="Emergency STOP!", icon="fa fa-print", template="estop_sidebar.jinja2", styles=["display: none"], data_bind="visible: loginState.isUser"),
|
||||
dict(type="sidebar", name="Emergency STOP!", icon="close", template="estop_sidebar.jinja2", styles=["display: none"], data_bind="visible: loginState.isUser"),
|
||||
dict(type="settings", name="E-Stop Settings", template="estop_settings.jinja2", custom_bindings=False)
|
||||
]
|
||||
|
||||
|
2
setup.py
2
setup.py
@ -14,7 +14,7 @@ plugin_package = "octoprint_estop"
|
||||
plugin_name = "OctoPrint-Estop"
|
||||
|
||||
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
||||
plugin_version = "0.1.1"
|
||||
plugin_version = "0.1.2"
|
||||
|
||||
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
||||
# module
|
||||
|
Reference in New Issue
Block a user