printer nozzle edits, spool creation

This commit is contained in:
Tabby 2025-10-30 22:32:42 +11:00
parent 319e30e3d4
commit 492990f073
9 changed files with 137 additions and 3 deletions

View file

@ -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: