Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
2a779c9489 | |||
b5693e2e34 | |||
55b2a05531 |
@ -83,7 +83,7 @@ class FanSliderPlugin(octoprint.plugin.StartupPlugin,
|
||||
|
||||
def rewrite_m106(self, comm_instance, phase, cmd, cmd_type, gcode, *args, **kwargs):
|
||||
if gcode and gcode.startswith('M106'):
|
||||
fanPwm = re.search("S(\d+.\d+)", cmd)
|
||||
fanPwm = re.search("S(\d+\.?\d*)", cmd)
|
||||
if fanPwm and fanPwm.group(1):
|
||||
fanPwm = fanPwm.group(1)
|
||||
if Decimal(fanPwm) < self.minPWM and Decimal(fanPwm) != 0:
|
||||
|
2
setup.py
2
setup.py
@ -14,7 +14,7 @@ plugin_package = "octoprint_fanspeedslider"
|
||||
plugin_name = "OctoPrint-FanSpeedSlider"
|
||||
|
||||
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
||||
plugin_version = "0.1.7"
|
||||
plugin_version = "0.1.8"
|
||||
|
||||
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
||||
# module
|
||||
|
Reference in New Issue
Block a user