mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Added bed & extruder temp + error state logging to usb gui
This commit is contained in:
parent
988741d418
commit
d7262c6ac6
3 changed files with 114 additions and 34 deletions
|
@ -6,10 +6,21 @@ Rectangle
|
|||
width: 300; height: 100
|
||||
ColumnLayout
|
||||
{
|
||||
Text
|
||||
RowLayout
|
||||
{
|
||||
text: "Hello world!"
|
||||
color: "blue"
|
||||
Text
|
||||
{
|
||||
text: "extruder temperature " + manager.extruderTemperature
|
||||
}
|
||||
Text
|
||||
{
|
||||
text: "bed temperature " + manager.bedTemperature
|
||||
}
|
||||
Text
|
||||
{
|
||||
text: "" + manager.error
|
||||
}
|
||||
|
||||
}
|
||||
RowLayout
|
||||
{
|
||||
|
@ -17,11 +28,13 @@ Rectangle
|
|||
{
|
||||
text: "Print"
|
||||
onClicked: { manager.startPrint() }
|
||||
enabled: manager.progress == 0 ? true : false
|
||||
}
|
||||
Button
|
||||
{
|
||||
text: "Cancel"
|
||||
onClicked: { manager.cancelPrint() }
|
||||
enabled: manager.progress == 0 ? false: true
|
||||
}
|
||||
}
|
||||
ProgressBar
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue