printer nozzle edits, spool creation
This commit is contained in:
parent
319e30e3d4
commit
492990f073
9 changed files with 137 additions and 3 deletions
|
|
@ -45,6 +45,12 @@ func list_printers() -> String:
|
|||
response += "\n- " + printer.list_string()
|
||||
return response
|
||||
|
||||
func list_spools() -> String:
|
||||
var response : String = "Current Spools:"
|
||||
for spool : Spool in save.spools:
|
||||
response += "\n- " + spool.list_string()
|
||||
return response
|
||||
|
||||
func printer_choies() -> Array[Dictionary]:
|
||||
var printer_names : Array[Dictionary] = []
|
||||
for printer : Printer in save.printers:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue