Migrate from info to debug

This commit is contained in:
sergiuToporjinschi
2022-01-29 21:51:58 +02:00
parent b5cd1b4c22
commit 4bca9f9795
7 changed files with 73 additions and 62 deletions
+21
View File
@@ -15,3 +15,24 @@ the plugin manager.
## Configuration
**TODO:** Describe your plugin's configuration options (if any).
## Regex for getting temperatures
\s*T:(?P<toolTemp>\d{1,3}.\d{1,3}).*B:(?P<betTemp>\d{1,3}.\d{1,3}).*
## extrude command from JS
OctoPrint.printer.issueToolCommand("extrude", {"amount":100, "speed":50})
## Notification JS
new PNotify({
title: "Success",
text: _.sprintf(text, {
command: _.escape(commandSpec.name)
}),
type: "success"
});