About SKR2 settings

2»

Comments

  • What G32 method and sensor type are you using? I had grid and 4 point symmetric working on bltouch and node sensor.

    Also would a simple G30 work? Just to figure out if the bed leveling or measurement is crashing.

    I wonder about the timeouts since we have busy protocol mentioning any longer pause. It is much stricter then marlins busy handling. Maybe you should also test with  Repetier-Server as host instead. That increases g-code throughput plus we know our firmware better.

    Regarding encoder - in which context does this happen? Menu/Value/Files on sd card?
  • Run quick tests before going to work...

    G30 worked just fine. Got this result
    Recv: X:100.00 Y:100.00 Z:78.000 E:0.0000
    Recv: Z-probe:77.728 X:100.00 Y:100.00

    My grid is defined as shown below. Is this correct?
    #define LEVELING_METHOD 1
    #define MAX_GRID_SIZE 5
    #define L_P1_X 23  and  #define L_P1_Y 12    << Front left corner close to Xmin and Ymin
    #define L_P2_X 190  and #define L_P2_Y 12   << Front right corner close to Xmax and Ymin
    #define L_P3_X 23 and #define L_P3_Y 230   << Rear left corner close to Xmin and Ymax

    My bed size is  Xmax=228.00 Ymax=240.00

    Encoder fails at any place (menus, values), even in the main screen that should not scroll.

    Thanks








  • Not wrong so far. L_Pxx is not used for method 1. But there are some other values bing used:
    #define ENABLE_BUMP_CORRECTION 1 // CPU intensive, so only activate if required
    #define BUMP_CORRECTION_START_DEGRADE 0.5 // Until this height we correct 100%
    #define BUMP_CORRECTION_END_HEIGHT 2 // From this height on we do no correction
    #define BUMP_LIMIT_TO 0 // Maximum allowed correction up/down, <= 0 off.
    #define Z_PROBE_BORDER 2 // Safety border to ensure position is allowed

    For measuring we use the defined bed size minus Z_PROBE_BORDER, so make sure bed position/size is set correctly.
  • Finally after 1.5 months of distraction (Covid included) I was able to resume working on this project. Here are my settings:
    #define ENABLE_BUMP_CORRECTION 0          // CPU intensive, so only activate if required
    #define BUMP_CORRECTION_START_DEGRADE 0.5 // Until this height we correct 100%
    #define BUMP_CORRECTION_END_HEIGHT 2      // From this height on we do no correction
    #define BUMP_LIMIT_TO 0                   // Maximum allowed correction up/down, <= 0 off.
    #define Z_PROBE_BORDER 35        // Safety border to ensure position is allowed
    And here are my remaining issues:

    1) G32 execution starts with homing Z, X and Y. I have opto-mechanical probe that is deactivated when printhead is homed. To activate probe I need to move printhead in a particular bed position where the magnet holding z-probe's visor is released. So I am doing couple of G1 moves to enable probe and then execute G32, which deactivates  it again. Is there any way to avoid homing within G32?

    2) After manually re-activating the probe while G32 is being executed, grid measurement starts but then something happens and bed crashes into the nozzle. I tried couple of times and it always crashes at the same spot (at the last measurement point in the 2nd row). Here is the log from Octoprint terminal window
    Send: N11 G32*40
    Recv: ok 11
    Recv: Info:Autoleveling disabled
    Recv: X:100.00 Y:100.00 Z:90.000 E:0.0000
    Recv: X:100.00 Y:100.00 Z:90.000 E:0.0000
    Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    Recv: SelectTool:0
    Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    Recv: Autoleveling with 25 grid points...
    Recv: X:35.00 Y:35.00 Z:4.000 E:0.0000
    Recv: Z-probe:4.002 X:35.00 Y:35.00
    Recv: X:74.50 Y:35.00 Z:4.000 E:0.0000
    Recv: Z-probe:4.189 X:74.50 Y:35.00
    Recv: X:114.00 Y:35.00 Z:4.000 E:0.0000
    Recv: Z-probe:4.349 X:114.00 Y:35.00
    Recv: X:153.50 Y:35.00 Z:4.000 E:0.0000
    Recv: Z-probe:4.490 X:153.50 Y:35.00
    Recv: X:193.00 Y:35.00 Z:4.000 E:0.0000
    Recv: Z-probe:4.699 X:193.00 Y:35.00
    Recv: X:193.00 Y:77.50 Z:4.000 E:0.0000
    Recv: Z-probe:4.550 X:193.00 Y:77.50
    Recv: X:153.50 Y:77.50 Z:4.000 E:0.0000
    Recv: Z-probe:4.345 X:153.50 Y:77.50
    Recv: X:114.00 Y:77.50 Z:4.000 E:0.0000
    Recv: Z-probe:4.158 X:114.00 Y:77.50
    Recv: X:74.50 Y:77.50 Z:4.000 E:0.0000
    Recv: Z-probe:3.999 X:74.50 Y:77.50
    Recv: X:35.00 Y:77.50 Z:4.000 E:0.0000
    Recv: Error:Failed to trigger probe endstop! Bed crash?
    Changing monitoring state from "Operational" to "Error"
    I can see that the probe is triggered. Any ideas what can be causing this?

    3) PID question. After PID tuning in Classic mode Extruder still overshoots requested temperature by 5-6 degrees. So when I set 240C for PETG it goes up-to 245-246 and then starts to come back and fluctuates between 238 and 242. Is this normal? PID tuning for heated bed worked perfectly. Temperature gradually increases to the requested value and stays there.

    4) I still have problem with display encoder. Unless I turn it really slow, LCD goes blank and SKR2 hangs. The only way to bring board back to life is power cycle or by pressing reset button. Not sure if encoder uses interrupts, if yes - could it be that new interrupt from encoder comes in before the previous is handled? Never had issues with this LCD and encoder under Repetier 1.x. Although it should be mentioned that mainboard was different.

    Any advises/suggestions will be very much appreciated.

    Thanks
  • 1) GCodes.cpp
    void __attribute__((weak)) GCode_32(GCode* com) {
    bool ok = Leveling::execute_G32(com);
    if (ok && Motion1::homeDir[Z_AXIS] > 0 && ZProbe != nullptr && !Printer::breakLongCommand) {
    bool oldDistortion = Leveling::isDistortionEnabled();
    Leveling::setDistortionEnabled(false);

    // we need to measure top as well to get correct height after homing
    // Solution is simple and robust. We just home Z go to middle and measure
    // and measure z distance with probe. Difference between z and measured z is z max error.
    Motion1::homeAxes(axisBits[Z_AXIS]);
    float zTheroetical = ZProbeHandler::optimumProbingHeight(), zMeasured = 0;
    float xMin, xMax, yMin, yMax, xCenter, yCenter;
    PrinterType::getBedRectangle(xMin, xMax, yMin, yMax);
    xCenter = 0.5 * (xMin + xMax);
    yCenter = 0.5 * (yMin + yMax);
    Motion1::setTmpPositionXYZ(xCenter, yCenter, zTheroetical);
    ok = Motion1::moveByOfficial(Motion1::tmpPosition, Motion1::moveFeedrate[X_AXIS], false);
    if (ok) {
    ok &= ZProbeHandler::activate();
    }

    Here you see Motion1::homeAxes(axisBits[Z_AXIS]); but that should be no problem. Or does homing normally not work? The important part is I think that afterwards we call

    ZProbeHandler::activate();

    which activates the z probe. There is also a deactivate. The idea is to have a handler that takes care of what ever is required. So there you should run your sequence to activate probe and then it would always automatically happen when required. Or is tehre something preventing it to adding the gcode in activate/deactivate? I mean tehre is even a script for it already.

    2) Recv: Error:Failed to trigger probe endstop! Bed crash?
    Well that sounds like it did not trigger. At least not when expected. Can it be, that you need a minimum starting distance to trigger? Not sure what probe you are using when it has a visor - whatever that means. But I know from bltouch that it has some timings and violations get errors.

    3) Overshoot some extend is quite normal. You can only prevent overshoot if you come very slowly from below (might be why bed works better), but that means longer heat up times. This also depends on how much power the heater has - more power is easier to overshoot that a heater happy to reach a temperature at all.

    4) Never had that. There is an encoder speed setting if it jumps more than one menu item per click you need to adjust that. What display type are you using? Character or 128x64 pixel. The latter need some time to update but haven't seen a crash due to fast changes. But you can use most of cpu when changing display quickly. Encoder is polled frequently in an interrupt, but execution is in main thread so we only buffer signals for execution. 
    In V2 we use the newer LCD library. On some displays timings are quite critical sometimes. But I do not really see why encoder should have influence on it apart of more updates. Does cable run next to heater/motor cables so it might get bad signals? Does it happen when only powered from usb where that issue should not exist?
  • Many Thanks for quick reply. I made some progress with #1 and #2 but run out of time last night. Planning to continue tonight. So far I was able to put my probe activation code into Z_PROBE_START_SCRIPT. That took care of #1. I also increased Z_PROBE_SWITCHING_DISTANCE from 1.5 to 5. Looks like that helped with #2 as measurement went through all 25 points. However 2 new issues came up.

    One is this: while measuring the distance to the bed (I have Z_PROBE_REPETITIONS 2) bed moves up and down twice, as expected, but then before moving printhead to the next position, it moves up and while printhead is relocating the probe pin touches the bed. It is very light touch way below probe's triggering point, but still would be nice to move print head while bed is at its lowered position after the last measurement. Simply looks like unnecessary extra move plus may cause bed scratching.

    Another problem was that after completing 25 point measurement bed and printhead started to move unexpectedly which then turned into an attempt to run G32 again (the command was entered only once). Probe startup script was part of that run and because the initial position of the printhead in this case was not at Home it crashed into z-probe activator. I will rerun this tonight, film it and share the video on YouTube.

    Thanks

  • Not sure I understand correctly. Logic for 25 grid points is
    1. Move to xy position
    2. Probe and return to start height
    3. If not finished start next point with 1.

    So all xy moves should happen at same z height which is start height when you start. With repetitions the repetition is done from a lower z, but at end it should go back up to origin height. Sound like the 24 moves between measurements happen not at first z height or if z is moving while xy is changing. Would be both bad. You can debug this easily when you activate move debugging. Compile with
    #define DEBUG_MOVES 1
    in configuration.h at top area. Then activate it by enabling echo debug
    M111 S7
    Then you see in log all executed moves and it is quite easy to see if there is a move you did not expect/want.

    What are the script codes you run? Especially the deactivate code might be an issue with your repeated G32. Not all gcodes are allowed if they cause a recursion. E.g. G32 in deactivate script will always restart until firmware crashes.
  • edited June 2022
    Ok, so I filmed the entire process. The video is here https://youtu.be/CJarG3gY3II 

    I first executed G28 and then G32 S1
    My Z_PROBE_START_SCRIPT contains the string "G1 X0 F6000\nG1 Y193 F4000\nG1 X50\nG1 Y50"
    Z_PROBE_FINISHED_SCRIPT and Z_PROBE_RUN_AFTER_EVERY_PROBE are empty.

    As it can be seen from the video both print-head and bed make lots of unnecessary moves. Below I tried to describe them with timestamps

    0:00-0:20 - Initial homing after executing G28
    0:20-0:33 - homing that happens at the beginning of G32
    0:33-0:47 - bed moves up then down while print-head moves at certain (random??) position
    0:48-0:51 - Z_PROBE_START_SCRIPT is executed and the probe is dropped down (activated)
    0:52-0:54 - print-head moves towards the first measurement point but then by some reason moves to the same (random) spot that it was before executing Z_PROBE_START_SCRIPT. At the same time bed makes few extra moves up and down.
    0:54-0:58 - print-head moves back to the 1st measurement point and starts probing
    0:59-1:06 - bed goes up and down twice (Z_PROBE_REPETITIONS = 2) then moves up to the point where probe pin touches the glass, but the probe is not triggered yet and while it is in that position print-head moves to the next point of the grid.
    1:07-4:24 - the remaining 24 points are measured the same way.
    4:24-4:27 - bed moves down then stops. Print-head moves to the same (random) position as at the beginning of the measurement.
    4:28 -4:40 - bed goes down and does Z-homing. XY axis do not home, i.e. the probe is still activated.
    4:41-4:47 - print-head moves to another random position close to the middle of the bed. At the same time bed moves up until probe is triggered once again. Then bed goes down a little bit.
    4:48 - 4:51 print-head moves towards probe activator from the opposite side and crashes into it.
    4:52 - 4:59 print-head moves towards the first measuring point, then returns to the center of the bed and this completes leveling.

    I am really puzzled about the purpose of all these extra moves. Maybe they all are needed, but user'd expect just the following G32 functionality. If G28 has been executed after powering up the board - no need to run it again. Execute Z_PROBE_START_SCRIPT. Move print head to the 1st position of the grid and start measuring. Run Z_PROBE_RUN_AFTER_EVERY_PROBE if configured. Keep bed down while moving between points. After measuring the last point execute Z_PROBE_FINISHED_SCRIPT. Finally home all axis and update EEPROM if S1 switch is present.

    Sorry for the long post but I decided to paste the serial log of the measurement, although it is not from the same measurement as on the video. At the very end of this attempt to run G32, after measuring all points and crashing into probe activator, print-head also crashed into the bed which caused the major error and mainboard restarted. I hope this log can shed some light on this strange behavior.
    2022-06-22 22:08:05,284 - Send: N11 M111 S7*86
    2022-06-22 22:08:05,304 - Recv: ok 11
    2022-06-22 22:08:05,317 - Recv: debug:Echo:On
    2022-06-22 22:08:05,323 - Recv: debug:Info:On
    2022-06-22 22:08:05,330 - Recv: debug:Errors:On
    2022-06-22 22:08:05,334 - Recv: debug:DryRun:Off
    2022-06-22 22:08:05,339 - Recv: debug:Communication:Off
    2022-06-22 22:08:05,348 - Recv: debug:NoMoves:Off
    2022-06-22 22:08:05,360 - Recv: debug:Endstops:Off
    2022-06-22 22:08:05,371 - Recv: Echo:N11 M111 S7
    2022-06-22 22:08:08,116 - Send: N12 G28*32
    2022-06-22 22:08:08,136 - Recv: ok 12
    2022-06-22 22:08:08,142 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:08,175 - Recv: simpleHome started:2
    2022-06-22 22:08:08,268 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:1.00 f:8.00
    2022-06-22 22:08:08,290 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-1.00
    2022-06-22 22:08:09,065 - Recv: Move CX:228.00 CY:240.00 CZ:89.00 OX:0.00 l:1.50 f:4.00
    2022-06-22 22:08:09,087 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:1.50
    2022-06-22 22:08:09,718 - Recv: simpleHome A X:228.00 Y:240.00 Z:90.500 E:0.0000 XS:95990 YS:-2461 ZS:144076
    2022-06-22 22:08:09,795 - Recv: simpleHome B X:228.00 Y:240.00 Z:90.500 E:0.0000 XS:95990 YS:-2461 ZS:144076
    2022-06-22 22:08:09,826 - Recv: Move CX:228.00 CY:240.00 CZ:90.50 OX:0.00 l:2.83 f:8.00
    2022-06-22 22:08:09,847 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-2.83
    2022-06-22 22:08:11,075 - Recv: simpleHome C X:228.00 Y:240.00 Z:87.675 E:0.0000 XS:95990 YS:-2461 ZS:139578
    2022-06-22 22:08:11,118 - Recv: simpleHome X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:11,133 - Recv: simpleHome finished:2
    2022-06-22 22:08:11,143 - Recv: simpleHome started:3
    2022-06-22 22:08:11,157 - Recv: simpleHome started:0
    2022-06-22 22:08:11,201 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:342.64 f:40.00
    2022-06-22 22:08:11,223 - Recv: Move DX:342.64 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:11,475 - Recv: Move CX:570.64 CY:240.00 CZ:90.00 OX:0.00 l:3.00 f:40.00
    2022-06-22 22:08:11,497 - Recv: Move DX:-3.00 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:11,762 - Recv: Move CX:567.64 CY:240.00 CZ:90.00 OX:0.00 l:4.50 f:20.00
    2022-06-22 22:08:11,784 - Recv: Move DX:4.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:12,102 - Recv: simpleHome A X:572.14 Y:240.00 Z:90.000 E:0.0000 XS:166575 YS:68124 ZS:143280
    2022-06-22 22:08:12,176 - Recv: simpleHome B X:572.14 Y:240.00 Z:90.000 E:0.0000 XS:166575 YS:68124 ZS:143280
    2022-06-22 22:08:12,210 - Recv: Move CX:572.14 CY:240.00 CZ:90.00 OX:0.00 l:0.91 f:40.00
    2022-06-22 22:08:12,232 - Recv: Move DX:-0.91 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:12,456 - Recv: simpleHome C X:571.23 Y:240.00 Z:90.000 E:0.0000 XS:166390 YS:67938 ZS:143280
    2022-06-22 22:08:12,500 - Recv: simpleHome X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:12,514 - Recv: simpleHome finished:0
    2022-06-22 22:08:12,526 - Recv: simpleHome started:1
    2022-06-22 22:08:12,560 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:361.05 f:40.00
    2022-06-22 22:08:12,583 - Recv: Move DX:0.00 DE:0.00 DY:361.05 DZ:0.00
    2022-06-22 22:08:12,840 - Recv: Move CX:228.00 CY:601.05 CZ:90.00 OX:0.00 l:3.00 f:40.00
    2022-06-22 22:08:12,862 - Recv: Move DX:0.00 DE:0.00 DY:-3.00 DZ:0.00
    2022-06-22 22:08:13,127 - Recv: Move CX:228.00 CY:598.05 CZ:90.00 OX:0.00 l:4.50 f:20.00
    2022-06-22 22:08:13,149 - Recv: Move DX:0.00 DE:0.00 DY:4.50 DZ:0.00
    2022-06-22 22:08:13,472 - Recv: simpleHome A X:228.00 Y:602.55 Z:90.000 E:0.0000 XS:170352 YS:-76823 ZS:143280
    2022-06-22 22:08:13,547 - Recv: simpleHome B X:228.00 Y:602.55 Z:90.000 E:0.0000 XS:170352 YS:-76823 ZS:143280
    2022-06-22 22:08:13,581 - Recv: Move CX:228.00 CY:602.55 CZ:90.00 OX:0.00 l:1.18 f:40.00
    2022-06-22 22:08:13,602 - Recv: Move DX:0.00 DE:0.00 DY:-1.18 DZ:0.00
    2022-06-22 22:08:13,836 - Recv: simpleHome C X:228.00 Y:601.37 Z:90.000 E:0.0000 XS:170109 YS:-76580 ZS:143280
    2022-06-22 22:08:13,879 - Recv: simpleHome X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:13,892 - Recv: simpleHome finished:1
    2022-06-22 22:08:13,937 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:13,970 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:2.83 f:10.00
    2022-06-22 22:08:13,991 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:2.83
    2022-06-22 22:08:15,181 - Recv: SelectTool:0
    2022-06-22 22:08:15,226 - Recv: homeAxes end X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:15,248 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:15,259 - Recv: Echo:N12 G28
    2022-06-22 22:08:20,552 - Send: N13 G32 S1*104
    2022-06-22 22:08:20,575 - Recv: ok 13
    2022-06-22 22:08:20,581 - Recv: Info:Autoleveling disabled
    2022-06-22 22:08:20,590 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:20,612 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:20,648 - Recv: simpleHome started:2
    2022-06-22 22:08:20,748 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:1.00 f:8.00
    2022-06-22 22:08:20,771 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-1.00
    2022-06-22 22:08:21,547 - Recv: Move CX:228.00 CY:240.00 CZ:89.00 OX:0.00 l:1.50 f:4.00
    2022-06-22 22:08:21,569 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:1.50
    2022-06-22 22:08:22,200 - Recv: simpleHome A X:228.00 Y:240.00 Z:90.500 E:0.0000 XS:95990 YS:-2461 ZS:144076
    2022-06-22 22:08:22,275 - Recv: simpleHome B X:228.00 Y:240.00 Z:90.500 E:0.0000 XS:95990 YS:-2461 ZS:144076
    2022-06-22 22:08:22,307 - Recv: Move CX:228.00 CY:240.00 CZ:90.50 OX:0.00 l:2.83 f:8.00
    2022-06-22 22:08:22,329 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-2.83
    2022-06-22 22:08:23,556 - Recv: simpleHome C X:228.00 Y:240.00 Z:87.675 E:0.0000 XS:95990 YS:-2461 ZS:139578
    2022-06-22 22:08:23,599 - Recv: simpleHome X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:23,613 - Recv: simpleHome finished:2
    2022-06-22 22:08:23,624 - Recv: simpleHome started:0
    2022-06-22 22:08:23,670 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:342.64 f:40.00
    2022-06-22 22:08:23,692 - Recv: Move DX:342.64 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:23,944 - Recv: Move CX:570.64 CY:240.00 CZ:90.00 OX:0.00 l:3.00 f:40.00
    2022-06-22 22:08:23,968 - Recv: Move DX:-3.00 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:24,233 - Recv: Move CX:567.64 CY:240.00 CZ:90.00 OX:0.00 l:4.50 f:20.00
    2022-06-22 22:08:24,255 - Recv: Move DX:4.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:24,571 - Recv: simpleHome A X:572.14 Y:240.00 Z:90.000 E:0.0000 XS:166575 YS:68124 ZS:143280
    2022-06-22 22:08:24,647 - Recv: simpleHome B X:572.14 Y:240.00 Z:90.000 E:0.0000 XS:166575 YS:68124 ZS:143280
    2022-06-22 22:08:24,680 - Recv: Move CX:572.14 CY:240.00 CZ:90.00 OX:0.00 l:0.91 f:40.00
    2022-06-22 22:08:24,702 - Recv: Move DX:-0.91 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:24,927 - Recv: simpleHome C X:571.23 Y:240.00 Z:90.000 E:0.0000 XS:166390 YS:67938 ZS:143280
    2022-06-22 22:08:24,970 - Recv: simpleHome X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:24,983 - Recv: simpleHome finished:0
    2022-06-22 22:08:24,996 - Recv: simpleHome started:1
    2022-06-22 22:08:25,031 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:361.05 f:40.00
    2022-06-22 22:08:25,053 - Recv: Move DX:0.00 DE:0.00 DY:361.05 DZ:0.00
    2022-06-22 22:08:25,310 - Recv: Move CX:228.00 CY:601.05 CZ:90.00 OX:0.00 l:3.00 f:40.00
    2022-06-22 22:08:25,332 - Recv: Move DX:0.00 DE:0.00 DY:-3.00 DZ:0.00
    2022-06-22 22:08:25,598 - Recv: Move CX:228.00 CY:598.05 CZ:90.00 OX:0.00 l:4.50 f:20.00
    2022-06-22 22:08:25,619 - Recv: Move DX:0.00 DE:0.00 DY:4.50 DZ:0.00
    2022-06-22 22:08:25,942 - Recv: simpleHome A X:228.00 Y:602.55 Z:90.000 E:0.0000 XS:170352 YS:-76823 ZS:143280
    2022-06-22 22:08:26,017 - Recv: simpleHome B X:228.00 Y:602.55 Z:90.000 E:0.0000 XS:170352 YS:-76823 ZS:143280
    2022-06-22 22:08:26,050 - Recv: Move CX:228.00 CY:602.55 CZ:90.00 OX:0.00 l:1.18 f:40.00
    2022-06-22 22:08:26,073 - Recv: Move DX:0.00 DE:0.00 DY:-1.18 DZ:0.00
    2022-06-22 22:08:26,306 - Recv: simpleHome C X:228.00 Y:601.37 Z:90.000 E:0.0000 XS:170109 YS:-76580 ZS:143280
    2022-06-22 22:08:26,350 - Recv: simpleHome X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:26,362 - Recv: simpleHome finished:1
    2022-06-22 22:08:26,406 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:26,448 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:2.83 f:10.00
    2022-06-22 22:08:26,469 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:2.83
    2022-06-22 22:08:27,679 - Recv: SelectTool:0
    2022-06-22 22:08:27,716 - Recv: homeAxes end X:228.00 Y:240.00 Z:90.000 E:0.0000 XS:95990 YS:-2461 ZS:143280
    2022-06-22 22:08:27,738 - Recv: X:228.00 Y:240.00 Z:90.000 E:0.0000
    2022-06-22 22:08:27,772 - Recv: Move CX:228.00 CY:240.00 CZ:90.00 OX:0.00 l:86.00 f:10.00
    2022-06-22 22:08:27,794 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-86.00
    2022-06-22 22:08:27,828 - Recv: Move CX:228.00 CY:240.00 CZ:4.00 OX:0.00 l:79.83 f:150.00
    2022-06-22 22:08:27,853 - Recv: Move DX:-69.40 DE:0.00 DY:-24.40 DZ:31.00
    2022-06-22 22:08:27,889 - Recv: Move CX:158.60 CY:215.60 CZ:35.00 OX:0.00 l:158.60 f:100.00
    2022-06-22 22:08:27,912 - Recv: Move DX:-158.60 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:27,955 - Recv: Move CX:0.00 CY:215.60 CZ:35.00 OX:0.00 l:22.60 f:66.67
    2022-06-22 22:08:27,978 - Recv: Move DX:0.00 DE:0.00 DY:-22.60 DZ:0.00
    2022-06-22 22:08:28,018 - Recv: Move CX:0.00 CY:193.00 CZ:35.00 OX:0.00 l:50.00 f:66.67
    2022-06-22 22:08:28,041 - Recv: Move DX:50.00 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:28,074 - Recv: Move CX:50.00 CY:193.00 CZ:35.00 OX:0.00 l:143.00 f:66.67
    2022-06-22 22:08:28,098 - Recv: Move DX:0.00 DE:0.00 DY:-143.00 DZ:0.00
    2022-06-22 22:08:28,131 - Recv: Move CX:50.00 CY:50.00 CZ:35.00 OX:0.00 l:198.03 f:150.00
    2022-06-22 22:08:28,156 - Recv: Move DX:108.60 DE:0.00 DY:165.60 DZ:0.00
    2022-06-22 22:08:28,190 - Recv: Move CX:158.60 CY:215.60 CZ:35.00 OX:0.00 l:36.00 f:150.00
    2022-06-22 22:08:28,213 - Recv: Move DX:34.40 DE:0.00 DY:-10.60 DZ:0.00
    2022-06-22 22:08:47,916 - Recv: Autoleveling with 25 grid points...
    2022-06-22 22:08:47,952 - Recv: Move CX:193.00 CY:205.00 CZ:35.00 OX:34.40 l:221.03 f:150.00
    2022-06-22 22:08:47,978 - Recv: Move DX:-123.60 DE:0.00 DY:-180.60 DZ:-31.00
    2022-06-22 22:08:48,021 - Recv: X:35.00 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:08:51,669 - Recv: Move CX:69.40 CY:24.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:08:51,691 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:08:52,006 - Recv: Move CX:69.40 CY:24.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:08:52,029 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:08:53,605 - Recv: Move CX:69.40 CY:24.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:08:53,627 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:08:59,184 - Recv: X:35.00 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:08:59,202 - Recv: Z-probe:5.812 X:35.00 Y:35.00
    2022-06-22 22:08:59,259 - Recv: Move CX:69.40 CY:24.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:08:59,280 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:08:59,323 - Recv: X:74.50 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:08:59,834 - Recv: Move CX:108.90 CY:24.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:08:59,856 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:00,276 - Recv: Move CX:108.90 CY:24.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:00,298 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:01,874 - Recv: Move CX:108.90 CY:24.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:01,895 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:07,319 - Recv: X:74.50 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:07,338 - Recv: Z-probe:5.943 X:74.50 Y:35.00
    2022-06-22 22:09:07,394 - Recv: Move CX:108.90 CY:24.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:09:07,416 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:09:07,458 - Recv: X:114.00 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:07,969 - Recv: Move CX:148.40 CY:24.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:07,992 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:08,468 - Recv: Move CX:148.40 CY:24.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:08,490 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:10,066 - Recv: Move CX:148.40 CY:24.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:10,089 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:15,455 - Recv: X:114.00 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:15,475 - Recv: Z-probe:6.186 X:114.00 Y:35.00
    2022-06-22 22:09:15,530 - Recv: Move CX:148.40 CY:24.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:09:15,554 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:09:15,596 - Recv: X:153.50 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:16,106 - Recv: Move CX:187.90 CY:24.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:16,128 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:16,665 - Recv: Move CX:187.90 CY:24.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:16,686 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:18,262 - Recv: Move CX:187.90 CY:24.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:18,285 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:23,644 - Recv: X:153.50 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:23,664 - Recv: Z-probe:6.406 X:153.50 Y:35.00
    2022-06-22 22:09:23,719 - Recv: Move CX:187.90 CY:24.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:09:23,742 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:09:23,785 - Recv: X:193.00 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:24,295 - Recv: Move CX:227.40 CY:24.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:24,316 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:24,910 - Recv: Move CX:227.40 CY:24.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:24,931 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:26,508 - Recv: Move CX:227.40 CY:24.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:26,530 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:31,831 - Recv: X:193.00 Y:35.00 Z:4.000 E:0.0000
    2022-06-22 22:09:31,851 - Recv: Z-probe:6.654 X:193.00 Y:35.00
    2022-06-22 22:09:31,907 - Recv: Move CX:227.40 CY:24.40 CZ:4.00 OX:34.40 l:42.50 f:150.00
    2022-06-22 22:09:31,930 - Recv: Move DX:0.00 DE:0.00 DY:42.50 DZ:0.00
    2022-06-22 22:09:31,972 - Recv: X:193.00 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:32,503 - Recv: Move CX:227.40 CY:66.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:32,524 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:33,100 - Recv: Move CX:227.40 CY:66.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:33,122 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:34,698 - Recv: Move CX:227.40 CY:66.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:34,720 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:40,012 - Recv: X:193.00 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:40,032 - Recv: Z-probe:6.540 X:193.00 Y:77.50
    2022-06-22 22:09:40,087 - Recv: Move CX:227.40 CY:66.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:09:40,110 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:09:40,153 - Recv: X:153.50 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:40,663 - Recv: Move CX:187.90 CY:66.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:40,685 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:41,260 - Recv: Move CX:187.90 CY:66.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:41,281 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:42,858 - Recv: Move CX:187.90 CY:66.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:42,880 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:48,138 - Recv: X:153.50 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:48,158 - Recv: Z-probe:6.535 X:153.50 Y:77.50
    2022-06-22 22:09:48,213 - Recv: Move CX:187.90 CY:66.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:09:48,235 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:09:48,279 - Recv: X:114.00 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:48,788 - Recv: Move CX:148.40 CY:66.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:48,810 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:49,391 - Recv: Move CX:148.40 CY:66.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:49,413 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:50,989 - Recv: Move CX:148.40 CY:66.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:51,012 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:56,237 - Recv: X:114.00 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:56,257 - Recv: Z-probe:6.534 X:114.00 Y:77.50
    2022-06-22 22:09:56,312 - Recv: Move CX:148.40 CY:66.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:09:56,335 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:09:56,378 - Recv: X:74.50 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:09:56,888 - Recv: Move CX:108.90 CY:66.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:56,910 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:09:57,491 - Recv: Move CX:108.90 CY:66.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:09:57,513 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:09:59,089 - Recv: Move CX:108.90 CY:66.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:09:59,112 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:04,394 - Recv: X:74.50 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:10:04,411 - Recv: Z-probe:6.552 X:74.50 Y:77.50
    2022-06-22 22:10:04,469 - Recv: Move CX:108.90 CY:66.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:10:04,491 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:10:04,534 - Recv: X:35.00 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:10:05,043 - Recv: Move CX:69.40 CY:66.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:05,066 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:05,653 - Recv: Move CX:69.40 CY:66.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:05,674 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:07,251 - Recv: Move CX:69.40 CY:66.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:07,273 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:12,519 - Recv: X:35.00 Y:77.50 Z:4.000 E:0.0000
    2022-06-22 22:10:12,542 - Recv: Z-probe:6.583 X:35.00 Y:77.50
    2022-06-22 22:10:12,593 - Recv: Move CX:69.40 CY:66.90 CZ:4.00 OX:34.40 l:42.50 f:150.00
    2022-06-22 22:10:12,616 - Recv: Move DX:0.00 DE:0.00 DY:42.50 DZ:0.00
    2022-06-22 22:10:12,659 - Recv: X:35.00 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:13,190 - Recv: Move CX:69.40 CY:109.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:13,218 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:13,735 - Recv: Move CX:69.40 CY:109.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:13,757 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:15,354 - Recv: Move CX:69.40 CY:109.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:15,359 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:20,676 - Recv: X:35.00 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:20,696 - Recv: Z-probe:6.346 X:35.00 Y:120.00
    2022-06-22 22:10:20,751 - Recv: Move CX:69.40 CY:109.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:10:20,773 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:10:20,815 - Recv: X:74.50 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:21,326 - Recv: Move CX:108.90 CY:109.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:21,349 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:21,942 - Recv: Move CX:108.90 CY:109.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:21,964 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:23,540 - Recv: Move CX:108.90 CY:109.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:23,563 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:28,856 - Recv: X:74.50 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:28,876 - Recv: Z-probe:6.638 X:74.50 Y:120.00
    2022-06-22 22:10:28,931 - Recv: Move CX:108.90 CY:109.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:10:28,953 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:10:28,997 - Recv: X:114.00 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:29,506 - Recv: Move CX:148.40 CY:109.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:29,529 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:30,202 - Recv: Move CX:148.40 CY:109.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:30,224 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:31,800 - Recv: Move CX:148.40 CY:109.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:31,821 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:36,979 - Recv: X:114.00 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:36,997 - Recv: Z-probe:6.913 X:114.00 Y:120.00
    2022-06-22 22:10:37,054 - Recv: Move CX:148.40 CY:109.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:10:37,077 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:10:37,121 - Recv: X:153.50 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:37,630 - Recv: Move CX:187.90 CY:109.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:37,652 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:38,415 - Recv: Move CX:187.90 CY:109.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:38,437 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:40,013 - Recv: Move CX:187.90 CY:109.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:40,034 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:45,124 - Recv: X:153.50 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:45,143 - Recv: Z-probe:7.280 X:153.50 Y:120.00
    2022-06-22 22:10:45,200 - Recv: Move CX:187.90 CY:109.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:10:45,223 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:10:45,266 - Recv: X:193.00 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:45,777 - Recv: Move CX:227.40 CY:109.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:45,798 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:46,612 - Recv: Move CX:227.40 CY:109.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:46,634 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:48,210 - Recv: Move CX:227.40 CY:109.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:48,233 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:53,377 - Recv: X:193.00 Y:120.00 Z:4.000 E:0.0000
    2022-06-22 22:10:53,400 - Recv: Z-probe:7.567 X:193.00 Y:120.00
    2022-06-22 22:10:53,453 - Recv: Move CX:227.40 CY:109.40 CZ:4.00 OX:34.40 l:42.50 f:150.00
    2022-06-22 22:10:53,475 - Recv: Move DX:0.00 DE:0.00 DY:42.50 DZ:0.00
    2022-06-22 22:10:53,519 - Recv: X:193.00 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:10:54,048 - Recv: Move CX:227.40 CY:151.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:54,070 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:10:54,848 - Recv: Move CX:227.40 CY:151.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:10:54,870 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:10:56,445 - Recv: Move CX:227.40 CY:151.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:10:56,468 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:01,580 - Recv: X:193.00 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:01,600 - Recv: Z-probe:7.356 X:193.00 Y:162.50
    2022-06-22 22:11:01,657 - Recv: Move CX:227.40 CY:151.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:01,680 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:01,723 - Recv: X:153.50 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:02,232 - Recv: Move CX:187.90 CY:151.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:02,255 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:03,018 - Recv: Move CX:187.90 CY:151.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:03,040 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:04,615 - Recv: Move CX:187.90 CY:151.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:04,638 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:09,691 - Recv: X:153.50 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:09,710 - Recv: Z-probe:7.281 X:153.50 Y:162.50
    2022-06-22 22:11:09,767 - Recv: Move CX:187.90 CY:151.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:09,790 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:09,833 - Recv: X:114.00 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:10,342 - Recv: Move CX:148.40 CY:151.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:10,364 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:11,113 - Recv: Move CX:148.40 CY:151.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:11,134 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:12,709 - Recv: Move CX:148.40 CY:151.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:12,732 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:17,866 - Recv: X:114.00 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:17,885 - Recv: Z-probe:7.216 X:114.00 Y:162.50
    2022-06-22 22:11:17,942 - Recv: Move CX:148.40 CY:151.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:17,964 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:18,007 - Recv: X:74.50 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:18,517 - Recv: Move CX:108.90 CY:151.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:18,539 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:19,278 - Recv: Move CX:108.90 CY:151.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:19,300 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:20,876 - Recv: Move CX:108.90 CY:151.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:20,898 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:26,007 - Recv: X:74.50 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:26,026 - Recv: Z-probe:7.184 X:74.50 Y:162.50
    2022-06-22 22:11:26,083 - Recv: Move CX:108.90 CY:151.90 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:26,106 - Recv: Move DX:-39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:26,149 - Recv: X:35.00 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:26,658 - Recv: Move CX:69.40 CY:151.90 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:26,680 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:27,412 - Recv: Move CX:69.40 CY:151.90 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:27,434 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:29,010 - Recv: Move CX:69.40 CY:151.90 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:29,033 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:34,165 - Recv: X:35.00 Y:162.50 Z:4.000 E:0.0000
    2022-06-22 22:11:34,186 - Recv: Z-probe:7.152 X:35.00 Y:162.50
    2022-06-22 22:11:34,240 - Recv: Move CX:69.40 CY:151.90 CZ:4.00 OX:34.40 l:42.50 f:150.00
    2022-06-22 22:11:34,262 - Recv: Move DX:0.00 DE:0.00 DY:42.50 DZ:0.00
    2022-06-22 22:11:34,306 - Recv: X:35.00 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:34,836 - Recv: Move CX:69.40 CY:194.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:34,858 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:35,514 - Recv: Move CX:69.40 CY:194.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:35,536 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:37,113 - Recv: Move CX:69.40 CY:194.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:37,134 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:42,341 - Recv: X:35.00 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:42,359 - Recv: Z-probe:6.871 X:35.00 Y:205.00
    2022-06-22 22:11:42,416 - Recv: Move CX:69.40 CY:194.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:42,438 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:42,480 - Recv: X:74.50 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:42,991 - Recv: Move CX:108.90 CY:194.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:43,014 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:43,764 - Recv: Move CX:108.90 CY:194.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:43,785 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:45,363 - Recv: Move CX:108.90 CY:194.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:45,384 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:50,520 - Recv: X:74.50 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:50,540 - Recv: Z-probe:7.244 X:74.50 Y:205.00
    2022-06-22 22:11:50,596 - Recv: Move CX:108.90 CY:194.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:50,618 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:50,662 - Recv: X:114.00 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:51,170 - Recv: Move CX:148.40 CY:194.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:51,193 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:52,008 - Recv: Move CX:148.40 CY:194.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:11:52,029 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:11:53,605 - Recv: Move CX:148.40 CY:194.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:53,628 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:11:58,768 - Recv: X:114.00 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:58,788 - Recv: Z-probe:7.568 X:114.00 Y:205.00
    2022-06-22 22:11:58,843 - Recv: Move CX:148.40 CY:194.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:11:58,866 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:11:58,910 - Recv: X:153.50 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:11:59,419 - Recv: Move CX:187.90 CY:194.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:11:59,442 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:12:00,329 - Recv: Move CX:187.90 CY:194.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:12:00,350 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:12:01,926 - Recv: Move CX:187.90 CY:194.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:12:01,949 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:12:07,044 - Recv: X:153.50 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:12:07,062 - Recv: Z-probe:7.862 X:153.50 Y:205.00
    2022-06-22 22:12:07,119 - Recv: Move CX:187.90 CY:194.40 CZ:4.00 OX:34.40 l:39.50 f:150.00
    2022-06-22 22:12:07,142 - Recv: Move DX:39.50 DE:0.00 DY:0.00 DZ:0.00
    2022-06-22 22:12:07,186 - Recv: X:193.00 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:12:07,696 - Recv: Move CX:227.40 CY:194.40 CZ:4.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:12:07,717 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:12:08,680 - Recv: Move CX:227.40 CY:194.40 CZ:0.00 OX:34.40 l:5.00 f:800.00
    2022-06-22 22:12:08,702 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.00
    2022-06-22 22:12:10,278 - Recv: Move CX:227.40 CY:194.40 CZ:5.00 OX:34.40 l:6.00 f:4.00
    2022-06-22 22:12:10,301 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-6.00
    2022-06-22 22:12:15,284 - Recv: X:193.00 Y:205.00 Z:4.000 E:0.0000
    2022-06-22 22:12:15,303 - Recv: Z-probe:8.159 X:193.00 Y:205.00
    2022-06-22 22:12:15,361 - Recv: Move CX:227.40 CY:194.40 CZ:4.00 OX:34.40 l:31.00 f:150.00
    2022-06-22 22:12:15,383 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:31.00
    2022-06-22 22:12:15,418 - Recv: Move CX:227.40 CY:194.40 CZ:35.00 OX:34.40 l:36.00 f:150.00
    2022-06-22 22:12:15,442 - Recv: Move DX:-34.40 DE:0.00 DY:10.60 DZ:0.00
    2022-06-22 22:12:19,436 - Recv: plane: a = 0.0045 b = 0.0079 c = 5.4342
    2022-06-22 22:12:19,450 - Recv: z = a * x + y * b + c
    2022-06-22 22:12:19,467 - Recv: minPosOff: -0.02 -0.02 -2.94
    2022-06-22 22:12:19,485 - Recv: maxPosOff: 228.41 240.72 90.01
    2022-06-22 22:12:19,501 - Recv: rotMin: -0.02 -0.02 -2.94
    2022-06-22 22:12:19,515 - Recv: rotMax: 0.41 0.72 0.01
    2022-06-22 22:12:19,565 - Recv: transform: 0.99999 0.00000 -0.00447 -0.00004 0.99997 -0.00793 0.00447 0.00793 0.99996
    2022-06-22 22:12:19,625 - Recv: Transformation matrix: 0.999990 0.000000 -0.004471 -0.000035 0.999969 -0.007928 0.004471 0.007928 0.999959
    2022-06-22 22:12:19,643 - Recv: minPosOff: -0.02 -0.02 -2.94
    2022-06-22 22:12:19,661 - Recv: maxPosOff: 228.41 240.72 90.01
    2022-06-22 22:12:19,677 - Recv: rotMin: -0.02 -0.02 -2.94
    2022-06-22 22:12:19,691 - Recv: rotMax: 0.41 0.72 0.01
    2022-06-22 22:12:19,740 - Recv: transform: 0.99999 0.00000 -0.00447 -0.00004 0.99997 -0.00793 0.00447 0.00793 0.99996
    2022-06-22 22:12:19,766 - Recv: Info:Autoleveling enabled
    2022-06-22 22:12:19,788 - Recv: X:192.96 Y:204.92 Z:10.410 E:0.0000
    2022-06-22 22:12:19,808 - Recv: X:192.96 Y:204.92 Z:10.410 E:0.0000
    2022-06-22 22:12:19,834 - Recv: minPosOff: -0.02 -0.02 -2.94
    2022-06-22 22:12:19,853 - Recv: maxPosOff: 228.41 240.72 90.01
    2022-06-22 22:12:19,867 - Recv: rotMin: -0.02 -0.02 -2.94
    2022-06-22 22:12:19,881 - Recv: rotMax: 0.41 0.72 0.01
    2022-06-22 22:12:19,930 - Recv: transform: 0.99999 0.00000 -0.00447 -0.00004 0.99997 -0.00793 0.00447 0.00793 0.99996
    2022-06-22 22:12:19,953 - Recv: X:193.00 Y:205.00 Z:7.922 E:0.0000
    2022-06-22 22:12:19,987 - Recv: simpleHome started:2
    2022-06-22 22:12:20,020 - Recv: Move CX:193.00 CY:205.00 CZ:7.92 OX:0.00 l:139.42 f:8.00
    2022-06-22 22:12:20,043 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:139.42
    2022-06-22 22:12:20,663 - Recv: Storing data to eeprom
    2022-06-22 22:12:27,152 - Recv: Move CX:193.00 CY:205.00 CZ:147.34 OX:0.00 l:1.00 f:8.00
    2022-06-22 22:12:27,174 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-1.00
    2022-06-22 22:12:27,950 - Recv: Move CX:193.00 CY:205.00 CZ:146.34 OX:0.00 l:1.50 f:4.00
    2022-06-22 22:12:27,972 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:1.50
    2022-06-22 22:12:28,601 - Recv: simpleHome A X:193.00 Y:205.00 Z:147.841 E:0.0000 XS:81633 YS:-2461 ZS:235363
    2022-06-22 22:12:28,677 - Recv: simpleHome B X:193.00 Y:205.00 Z:147.841 E:0.0000 XS:81633 YS:-2461 ZS:235363
    2022-06-22 22:12:28,710 - Recv: Move CX:193.00 CY:205.00 CZ:147.84 OX:0.00 l:2.95 f:8.00
    2022-06-22 22:12:28,732 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:-2.95
    2022-06-22 22:12:29,984 - Recv: simpleHome C X:193.00 Y:205.00 Z:144.895 E:0.0000 XS:81633 YS:-2461 ZS:230673
    2022-06-22 22:12:30,027 - Recv: simpleHome X:193.00 Y:205.00 Z:90.000 E:0.0000 XS:81633 YS:-2461 ZS:143280
    2022-06-22 22:12:30,042 - Recv: simpleHome finished:2
    2022-06-22 22:12:30,081 - Recv: minPosOff: -0.02 -0.02 -2.94
    2022-06-22 22:12:30,099 - Recv: maxPosOff: 228.41 240.72 90.01
    2022-06-22 22:12:30,115 - Recv: rotMin: -0.02 -0.02 -2.94
    2022-06-22 22:12:30,129 - Recv: rotMax: 0.41 0.72 0.01
    2022-06-22 22:12:30,179 - Recv: transform: 0.99999 0.00000 -0.00447 -0.00004 0.99997 -0.00793 0.00447 0.00793 0.99996
    2022-06-22 22:12:30,199 - Recv: X:192.60 Y:204.27 Z:92.484 E:0.0000
    2022-06-22 22:12:30,233 - Recv: Move CX:193.00 CY:205.00 CZ:90.00 OX:0.00 l:5.43 f:10.00
    2022-06-22 22:12:30,255 - Recv: Move DX:0.00 DE:0.00 DY:0.00 DZ:5.43
    2022-06-22 22:12:31,191 - Recv: Move CX:193.00 CY:205.00 CZ:90.00 OX:0.00 l:2.59 f:150.00
    2022-06-22 22:12:31,214 - Recv: Move DX:0.36 DE:0.00 DY:0.63 DZ:-2.49
    2022-06-22 22:12:31,222 - Recv: SelectTool:0
    2022-06-22 22:12:32,346 - Recv: EEPROM data updated
    2022-06-22 22:12:32,390 - Recv: homeAxes end X:192.96 Y:204.92 Z:90.000 E:0.0000 XS:81835 YS:-2518 ZS:139314
    2022-06-22 22:12:32,412 - Recv: X:192.96 Y:204.92 Z:90.000 E:0.0000
    2022-06-22 22:12:32,447 - Recv: Move CX:193.36 CY:205.63 CZ:87.51 OX:0.00 l:144.37 f:150.00
    2022-06-22 22:12:32,472 - Recv: Move DX:-79.34 DE:0.00 DY:-85.60 DZ:-84.97
    2022-06-22 22:12:32,506 - Recv: Move CX:114.01 CY:120.03 CZ:2.54 OX:0.00 l:31.00 f:150.00
    2022-06-22 22:12:32,528 - Recv: Move DX:0.14 DE:0.00 DY:0.25 DZ:31.00
    2022-06-22 22:12:32,562 - Recv: Move CX:114.15 CY:120.27 CZ:33.54 OX:0.00 l:114.00 f:100.00
    2022-06-22 22:12:32,587 - Recv: Move DX:-114.00 DE:0.00 DY:0.00 DZ:0.51
    2022-06-22 22:12:32,620 - Recv: Move CX:0.15 CY:120.27 CZ:34.05 OX:0.00 l:73.00 f:66.67
    2022-06-22 22:12:32,643 - Recv: Move DX:-0.00 DE:0.00 DY:73.00 DZ:-0.58
    2022-06-22 22:12:32,675 - Recv: Move CX:0.15 CY:193.27 CZ:33.47 OX:0.00 l:50.00 f:66.67
    2022-06-22 22:12:32,699 - Recv: Move DX:50.00 DE:0.00 DY:0.00 DZ:-0.22
    2022-06-22 22:12:32,739 - Recv: Move CX:50.15 CY:193.27 CZ:33.24 OX:0.00 l:143.00 f:66.67
    2022-06-22 22:12:32,762 - Recv: Move DX:0.01 DE:0.00 DY:-143.00 DZ:1.13
    2022-06-22 22:12:32,806 - Recv: Move CX:50.15 CY:50.28 CZ:34.38 OX:0.00 l:94.85 f:150.00
    2022-06-22 22:12:32,830 - Recv: Move DX:64.00 DE:0.00 DY:70.00 DZ:-0.84
    2022-06-22 22:12:32,864 - Recv: Move CX:114.15 CY:120.27 CZ:33.54 OX:0.00 l:36.00 f:150.00
    2022-06-22 22:12:32,887 - Recv: Move DX:34.40 DE:0.00 DY:-10.60 DZ:0.00
    2022-06-22 22:12:48,109 - Recv: Error:z-probe triggered before starting probing.
    2022-06-22 22:12:48,121 - Changing monitoring state from "Operational" to "Error"
    2022-06-22 22:12:48,135 - Send: M112
    2022-06-22 22:12:48,137 - Send: N14 M112*20
    2022-06-22 22:12:48,163 - Send: N15 M104 T0 S0*21
    2022-06-22 22:12:48,170 - Send: N16 M140 S0*82
    2022-06-22 22:12:48,198 - Changing monitoring state from "Error" to "Offline after error"
    2022-06-22 22:12:48,214 - Connection closed, closing down monitor
    Thanks
  • I think your Z_PROBE_BED_DISTANCE is quite low. This has the effect that the normally lower Z_PROBE_SWITCHING_DISTANCE is now higher, so at end of test it goes down to bed distance which is where it might scratch.

    Your random position should be bed center I think. After homing for z max measurement we go to that position as it is in general the most save position across all printers to activate/deactivate probes.
  • edited June 2022
    I increased Z_PROBE_BED_DISTANCE from 4 to 12 but that made things even worse.
    Right now studying Leveling::measure(GCode* com) code and trying to debug every move.
    Meanwhile, could you please confirm that Z_PROBE_BORDER value should be greater or equal than absolute values of Z_PROBE_X_OFFSET and Z_PROBE_Y_OFFSET to avoid crashing onto one of the printer's side panels?

    Right now I have
    #define Z_PROBE_X_OFFSET -34.4
    #define Z_PROBE_Y_OFFSET 10.6
    #define Z_PROBE_BORDER 35

    Can I reduce Z_PROBE_BORDER ?

    Thanks









  • Z_PROBE_BORDER has nothing to do with offsets. It is used to create the grid size. We use the bed size (not reachable area) and subtract Z_PROBE_BORDER from all sides to be sure to be on the bed as sensors wont work outside bed. If offsets require more reduction they should get added automatically. So normally Z_PROBE_BORDER is maybe 5mm for physical sensors. Magnetic/optical sensors may need more distance to bed edge if that has an influence.
  • edited June 2022
    Spent several hours during the last weekend troubleshooting the issue with practically no progress. Unfortunately with my next long trip quickly approaching, I won't be able to keep working on this. For now I will through in other firmware to have running printer and hopefully will get back to this later this year. 
    @Repetier As always - many thanks for your help.




  • Repetier said:

    For measuring we use the defined bed size minus Z_PROBE_BORDER, so make sure bed position/size is set correctly.
    Can you explain how to set the bed position correctly? I can't get away from the edge of the bed on Y axis. I tried adding 10mm to Z probe border and I affected the X the way I expected. Then I thought maybe I had the wrong sign on the Z probe offset for Y axis. Your saying offset has no affect. So how can I get away from the edge of the bed? Plenty of room on the other end of the bed. I've defined everything in firmware host and the server. I have the same issues on other printers too with different FW. I'm missing something? Please define bed position settings.

  • Z_PROBE_BORDER reduces size for probing so bed must be bigger then that distance.

    Bed must be within the rectangle described by allowed positions

    #define X_MAX_LENGTH 270
    #define Y_MAX_LENGTH 270
    #define Z_MAX_LENGTH 270

    #define X_MIN_POS 0
    #define Y_MIN_POS 0
    #define Z_MIN_POS 0
    #define BED_X_MIN 0
    #define BED_X_MAX X_MAX_LENGTH
    #define BED_Y_MIN 0
    #define BED_Y_MAX X_MAX_LENGTH

    So Y_MIN_POS .. Y_MIN_POS + Y_MAX_LENGTH is the allowed range for bed. This is described by BED_Y_MIN .. BED_Y_MAX. In case eeprom is enabled you can change values there and it may be there that your area is set too small.
Sign In or Register to comment.