hall_filament_width_sensor: fix range check error (#4113)
Signed-off-by: Denis Ignatenko <deniss979@gmail.com>
This commit is contained in:
@@ -127,7 +127,7 @@ class HallFilamentWidthSensor:
|
|||||||
self.runout_helper.note_filament_present(
|
self.runout_helper.note_filament_present(
|
||||||
self.diameter > self.runout_dia)
|
self.diameter > self.runout_dia)
|
||||||
# Does filament exists
|
# Does filament exists
|
||||||
if self.lastFilamentWidthReading > 0.5:
|
if self.diameter > 0.5:
|
||||||
if len(self.filament_array) > 0:
|
if len(self.filament_array) > 0:
|
||||||
# Get first position in filament array
|
# Get first position in filament array
|
||||||
pending_position = self.filament_array[0][0]
|
pending_position = self.filament_array[0][0]
|
||||||
@@ -160,7 +160,7 @@ class HallFilamentWidthSensor:
|
|||||||
|
|
||||||
def cmd_M407(self, gcmd):
|
def cmd_M407(self, gcmd):
|
||||||
response = ""
|
response = ""
|
||||||
if self.lastFilamentWidthReading > 0:
|
if self.diameter > 0:
|
||||||
response += ("Filament dia (measured mm): "
|
response += ("Filament dia (measured mm): "
|
||||||
+ str(self.diameter))
|
+ str(self.diameter))
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user