mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-12-22 11:03:48 +01:00
Removing endcode variables comment
This commit is contained in:
parent
6f05ea9ce0
commit
92628c660f
@ -122,24 +122,6 @@ function M.stop_POST(request, response)
|
||||
local argGcode = request:get("gcode")
|
||||
local printer,msg = printerUtils.createPrinterOrFail(argId, response)
|
||||
if not printer then return end
|
||||
|
||||
--[[
|
||||
-- replacing variables in endgcode
|
||||
local printingTemperature = settings.get('printer.temperature')
|
||||
local printingBedTemperature = settings.get('printer.bed.temperature')
|
||||
local preheatTemperature = settings.get('printer.heatup.temperature')
|
||||
local preheatBedTemperature = settings.get('printer.heatup.bed.temperature')
|
||||
local endCode = settings.get('printer.endcode.marlin')
|
||||
|
||||
--log:info(" printingBedTemperature: "..utils.dump(printingBedTemperature))
|
||||
--log:info(" preheatBedTemperature: "..utils.dump(preheatBedTemperature))
|
||||
--log:info(" endCode : "..utils.dump(endCode))
|
||||
endCode = string.gsub(endCode,"{printingTemp}",printingTemperature)
|
||||
endCode = string.gsub(endCode,"{printingBedTemp}",printingBedTemperature)
|
||||
endCode = string.gsub(endCode,"{preheatTemp}",preheatTemperature)
|
||||
endCode = string.gsub(endCode,"{preheatBedTemp}",preheatBedTemperature)
|
||||
--log:info(" >endCode : "..utils.dump(endCode))
|
||||
]]--
|
||||
|
||||
if(argGcode == nil) then
|
||||
argGcode = ""
|
||||
|
Loading…
Reference in New Issue
Block a user