Commit 429c6f81 authored by kliment's avatar kliment

Merge pull request #53 from kludgineer/patch-1

PLA temps set to better defaults.
parents 837ad5c6 5d2ea3cf
...@@ -91,7 +91,7 @@ class Settings: ...@@ -91,7 +91,7 @@ class Settings:
# the initial value determines the type # the initial value determines the type
self.port = "" self.port = ""
self.baudrate = 115200 self.baudrate = 115200
self.temperature_pla = 210.0 self.temperature_pla = 185
self.temperature_abs = 230.0 self.temperature_abs = 230.0
self.bedtemp_pla = 60.0 self.bedtemp_pla = 60.0
self.bedtemp_abs = 110.0 self.bedtemp_abs = 110.0
...@@ -143,7 +143,7 @@ class pronsole(cmd.Cmd): ...@@ -143,7 +143,7 @@ class pronsole(cmd.Cmd):
self.sdfiles=[] self.sdfiles=[]
self.paused=False self.paused=False
self.sdprinting=0 self.sdprinting=0
self.temps={"pla":"210","abs":"230","off":"0"} self.temps={"pla":"185","abs":"230","off":"0"}
self.bedtemps={"pla":"60","abs":"110","off":"0"} self.bedtemps={"pla":"60","abs":"110","off":"0"}
self.percentdone=0 self.percentdone=0
self.tempreadings="" self.tempreadings=""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment