Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gee <bostwickenator@gmail.com>2020-05-24 00:42:01 +0300
committerAlexander Gee <bostwickenator@gmail.com>2020-05-24 00:42:01 +0300
commite807a086b4c1db930972ad6125f398b9703e4973 (patch)
treeee5075c560c6ef430cef5bfb8fcaaae304df5c0f /plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py
parent91199c8501228929424d04e6ad9b7f0c83da2047 (diff)
Refactor setting names for consistancy, migration script
Diffstat (limited to 'plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py')
-rw-r--r--plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py
index 01c0eb7d06..ac195b3b6c 100644
--- a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py
+++ b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py
@@ -1,7 +1,7 @@
# Cura PostProcessingPlugin
# Author: Mathias Lyngklip Kjeldgaard, Alexander Gee
# Date: July 31, 2019
-# Modified: May 13, 2020
+# Modified: May 22, 2020
# Description: This plugin displays progress on the LCD. It can output the estimated time remaining and the completion percentage.
@@ -17,20 +17,20 @@ class DisplayProgressOnLCD(Script):
def getSettingDataString(self):
return """{
- "name":"Display Progress On LCD",
- "key":"DisplayProgressOnLCD",
+ "name": "Display Progress On LCD",
+ "key": "DisplayProgressOnLCD",
"metadata": {},
"version": 2,
"settings":
{
- "TimeRemaining":
+ "time_remaining":
{
"label": "Time Remaining",
"description": "When enabled, write Time Left: HHMMSS on the display using M117. This is updated every layer.",
"type": "bool",
"default_value": false
},
- "Percentage":
+ "percentage":
{
"label": "Percentage",
"description": "When enabled, set the completion bar percentage on the LCD using Marlin's M73 command.",
@@ -56,8 +56,8 @@ class DisplayProgressOnLCD(Script):
lines.insert(line_index, "M117 Time Left {}".format(current_time_string))
def execute(self, data):
- output_time = self.getSettingValueByKey("TimeRemaining")
- output_percentage = self.getSettingValueByKey("Percentage")
+ output_time = self.getSettingValueByKey("time_remaining")
+ output_percentage = self.getSettingValueByKey("percentage")
line_set = {}
if (output_percentage or output_time) == True:
total_time = -1