got a wrong value for "Actual Estep Value"
Printer Output: Recv: echo: M92 X400.00 Y400.00 Z400.00 B888.89 E234.17
"Actual Estep Value": 888.89
Changing Regex in the __init__.py
from:
currentEsteps = re.findall(r"[-+]?\d*\.\d+|\d+", line)[4]
to:
currentEsteps = re.findall(r"(?<=E)[-+]?\d*\.?\d+", line)[0]
got a wrong value for "Actual Estep Value" Printer Output:
Recv: echo: M92 X400.00 Y400.00 Z400.00 B888.89 E234.17
"Actual Estep Value": 888.89
Changing Regex in the
__init__.py
from:currentEsteps = re.findall(r"[-+]?\d*\.\d+|\d+", line)[4]
to:currentEsteps = re.findall(r"(?<=E)[-+]?\d*\.?\d+", line)[0]