# After install Eddy coil printer error "Move out of range"

**URL:** https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234
**Category:** General Discussion
**Created:** [October 6, 2024, 9:01am UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234 "2024-10-06T09:01:19Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![horatio1989](https://avatars.discourse-cdn.com/v4/letter/h/eada6e/32.png) [@horatio1989](https://klipper.discourse.group/u/horatio1989)
#### Post date: [October 6, 2024, 9:01am UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/1 "2024-10-06T09:01:19Z")

</div>

### Basic Information:

Printer Model: Ender 3 Pro  
 MCU / Printerboard: SKR 3 + EBB42  
 Host / SBC: Raspberry Pi 5  
 [klippy.log](https://klipper.discourse.group/uploads/short-url/4HboeikpqjnWdJV3WmOnZ5bYAPx.log) (5.0 MB)

### Describe your issue:

Printer was working perfectly with BLtouch. I wanted to change to Eddy Coil (since I have an EBB42 board).  
I configured everything, I calibrate the Eddy. Everything is ok in that regard. I tried to print a 20x20x20 mm³ cube in the middle of the bed (I sliced with PrusaSlicer with the exact same configuration as I sliced everything). And after the Purge Line I have the error: Move out of range: -0.019 4.973 10.513 [29.000]

I commented out the Purge Line machro, and then the printer starts to print, it prints the skirt, and then prints the inner wall and continues with the outer wall, but before it can finish that, the same error appears: Move out of range: -0.018 4.974 10.231 [14.549]

Has anyone any idea what I am doing wrong? Just in case I am attaching also the GCode [Shape-Box\_26m.gcode](https://klipper.discourse.group/uploads/short-url/joGKyYO5rX6RNNZDNNa0MZPSvHQ.gcode) (269.4 KB)

---

<div class="post-metadata">

### Author: ![Sineos](https://yyz2.discourse-cdn.com/free1/user_avatar/klipper.discourse.group/sineos/32/18_2.png) [@Sineos](https://klipper.discourse.group/u/Sineos)
#### Post date: [October 6, 2024, 10:53am UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/3 "2024-10-06T10:53:12Z")

</div>

Shortly before the “Move out of range” there is a pause event. Judging from the MOOR values it seems a wrong pause position.

---

<div class="post-metadata">

### Author: ![horatio1989](https://avatars.discourse-cdn.com/v4/letter/h/eada6e/32.png) [@horatio1989](https://klipper.discourse.group/u/horatio1989)
#### Post date: [October 6, 2024, 2:56pm UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/4 "2024-10-06T14:56:08Z")

</div>

I think I found the issue.

There is a filament runout event before the MOOR that is not reported.

I checked and apparently, you can not trust the BTT pdf manual of the EBB42, since the pin is incorrect. I plug my SFS into the BLtouch connector, according to the pdf that is the PA4, However, the pdf Schematic, shows that the pin “Servos” is connected to PB9. I simply declared the correct pin and it didn’t fail again

---

<div class="post-metadata">

### Author: ![EddyMI3D](https://yyz2.discourse-cdn.com/free1/user_avatar/klipper.discourse.group/eddymi3d/32/1981_2.png) [@EddyMI3D](https://klipper.discourse.group/u/EddyMI3D)
#### Post date: [October 6, 2024, 5:25pm UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/5 "2024-10-06T17:25:56Z")

</div>

Not quite the solution.

You found the reason that issued the move that caused the MOOR.

But when you have a real filament runout, you again will have a MOOR.

```auto
[filament_motion_sensor SFS]
detection_length = 10.00
extruder = extruder
switch_pin = ^EBBCan: PA4
pause_on_runout = False
event_delay = 3.0
pause_delay = 0.5
runout_gcode = 
	M300 S1 P10
	M300 S1 P10
	PAUSE # <---------
	M600

```

```auto
[gcode_macro PAUSE]
description = Pause the actual running print
rename_existing = BASE_PAUSE
gcode = 
	
	{% set z = params.Z|default(10)|int %}
	
	{% if printer['pause_resume'].is_paused|int == 0 %}
	SET_GCODE_VARIABLE MACRO=RESUME VARIABLE=zhop VALUE={z}
	SET_GCODE_VARIABLE MACRO=RESUME VARIABLE=etemp VALUE={printer['extruder'].target}
	
	SFS_DISABLE
	SAVE_GCODE_STATE NAME=PAUSE
	BASE_PAUSE
	{% if (printer.gcode_move.position.z + z) < printer.toolhead.axis_maximum.z %}
	G91
	G1 Z{z} F900
	{% else %}
	{ action_respond_info("Pause zhop exceeds maximum Z height.") }
	SET_GCODE_VARIABLE MACRO=RESUME VARIABLE=zhop VALUE=0
	{% endif %}
	G90
	G1 X{printer.toolhead.axis_minimum.x} Y{printer.toolhead.axis_minimum.y+5} F6000 # <-----
	SAVE_GCODE_STATE NAME=PAUSEPARK
	M104 S0
	SET_IDLE_TIMEOUT TIMEOUT=43200
	{% endif %}

```

Be sure that `printer.toolhead.axis_minimum.x` is not larger than `position_max` of the bed

---

<div class="post-metadata">

### Author: ![horatio1989](https://avatars.discourse-cdn.com/v4/letter/h/eada6e/32.png) [@horatio1989](https://klipper.discourse.group/u/horatio1989)
#### Post date: [October 7, 2024, 5:35am UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/6 "2024-10-07T05:35:55Z")

</div>

Thanks a lot! I was completly lost! I will correct that

---

<div class="post-metadata">

### Author: ![horatio1989](https://avatars.discourse-cdn.com/v4/letter/h/eada6e/32.png) [@horatio1989](https://klipper.discourse.group/u/horatio1989)
#### Post date: [October 7, 2024, 3:05pm UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/7 "2024-10-07T15:05:32Z")

</div>

> [@EddyMI3D](#):
>
> Be sure that `printer.toolhead.axis_minimum.x` is not larger than `position_max` of the bed

I checked again, and the X min is 0 and X max is 254, how can this happen? do you have any idea?

---

<div class="post-metadata">

### Author: ![Sineos](https://yyz2.discourse-cdn.com/free1/user_avatar/klipper.discourse.group/sineos/32/18_2.png) [@Sineos](https://klipper.discourse.group/u/Sineos)
#### Post date: [October 7, 2024, 3:47pm UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/8 "2024-10-07T15:47:34Z")

</div>

> [@horatio1989](#):
>
> Move out of range: -0.018 4.974 10.231 [14.549]

A bit of a long shot here but I noticed similar “rounding issues” in other places as well. As you can see from the error message, Klipper tries to reach X=-0.018 (for whatever reason, maybe minimum step resolution?), where it should be plainly X=0.

Typically to avoid such effects, you would do something like:

```auto
G1 X{printer.toolhead.axis_minimum.x + 0.1}

```

---

<div class="post-metadata">

### Author: ![horatio1989](https://avatars.discourse-cdn.com/v4/letter/h/eada6e/32.png) [@horatio1989](https://klipper.discourse.group/u/horatio1989)
#### Post date: [October 8, 2024, 6:14am UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/9 "2024-10-08T06:14:42Z")

</div>

> [@Sineos](#):
>
> I noticed similar “rounding issues” in other places as well. As you can see from the error message, Klipper tries to reach X=-0.019

Thanks! I think that will do the trick. I don’t understand why is that happening, but most of the time it is around that value -0.018 or -0.019.

---

<div class="post-metadata">

### Author: ![system](https://global.discourse-cdn.com/free1/uploads/klipper/original/1X/64419bf2aac6639e6ef5cef200dcd456b0a01ac3.png) [@system](https://klipper.discourse.group/u/system)
#### Post date: [November 7, 2024, 4:14pm UTC](https://klipper.discourse.group/t/after-install-eddy-coil-printer-error-move-out-of-range/19234/10 "2024-11-07T16:14:57Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
