M2 V4 Extruder Mod

Show off your prints!!!
Post Reply
tslove28
Posts: 5
Joined: Sat Nov 10, 2018 6:38 pm

M2 V4 Extruder Mod

Post by tslove28 » Sun Dec 02, 2018 6:59 pm

I upgraded my M3 ID rev. 0 with the Makergear BLtouch upgrade and had the mounting plate left over. After using the BLtouch on the ID I decided I had to have it for the M2. So using the leftover plate, I mod'ed the M2 to include the BLtouch and the other parts that Makergear provides with the M3. I found it easier to use the Marlin 1.1.9 firmware than the original firmware to get the BLtouch to work. So far it works really well.

https://www.thingiverse.com/thing:3254205

I had a V4 dual extruder, and the 4 point spider upgrade on the M2. I dropped the dual option since I have the M3 ID now.

User avatar
Tim
Posts: 1205
Joined: Thu Apr 10, 2014 2:19 pm
Location: Poolesville, Maryland
Contact:

Re: M2 V4 Extruder Mod

Post by Tim » Mon Dec 03, 2018 2:22 pm

Nice implementation! Thanks for the wiring diagram on the Thingiverse post. It is encouraging to see that it can be done without using any of the ports needed for the dual extruder. As I posted in my comment to your design on Thingiverse, I have an inductive sensor that I have not been particularly satisfied with because it stops working near the edge of the build plate which is exactly the spot where you want to home it. I considered trying to redesign the extruder mount so I could put the probe a bit further back, but it was already pushed back about as far as I could get it, so I wasn't sure that was even possible. The BLTouch seems like a better solution overall, especially if I can fit it in with the existing electronics board. Thanks for sharing!

jprochnow
Posts: 113
Joined: Wed Apr 29, 2015 3:22 pm

Re: M2 V4 Extruder Mod

Post by jprochnow » Mon Dec 03, 2018 6:27 pm

Very interesting mod. I'm definitely going to be using the probe mount if things align to the m3se Hotend plate. I'm fairly new to Marlin modding but if I were to use your config file on a rev e machine(black motor) I should be able to just update the z esteps to get it to work correctly with my machine. Is that correct?

makeal
Posts: 77
Joined: Sat Aug 25, 2018 2:13 pm

Re: M2 V4 Extruder Mod

Post by makeal » Mon Dec 03, 2018 7:16 pm

Very nice. i'm running bltouch as well and 1.1.9 Still working on getting the zoffset good . so the mounting plate from M3 ID rev. 0 works fine on M2? Need to see if I can buy it from makergear
Can you post your part cooling fan shroud that you used with 40mm fan? also It looks like your connector mount is flipped. Was that done on purpose?

also what revision is your M2? and what does / #define DIGIPOT_MOTOR_CURRENT { 135,135,135,135,135 } // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A) do?

Thank you
Alex

tslove28
Posts: 5
Joined: Sat Nov 10, 2018 6:38 pm

Re: M2 V4 Extruder Mod

Post by tslove28 » Mon Dec 03, 2018 8:56 pm

makeal wrote:
Mon Dec 03, 2018 7:16 pm
Very nice. i'm running bltouch as well and 1.1.9 Still working on getting the zoffset good . so the mounting plate from M3 ID rev. 0 works fine on M2? Need to see if I can buy it from makergear
Can you post your part cooling fan shroud that you used with 40mm fan? also It looks like your connector mount is flipped. Was that done on purpose?

also what revision is your M2? and what does / #define DIGIPOT_MOTOR_CURRENT { 135,135,135,135,135 } // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A) do?

Thank you
Alex
I'm not sure about the connector mount being flipped, most likely it was just ignorance as to how it should look :). I believe that the Digipot_motor_current sets the current available to the stepper motors. There were only a couple of changes I could find in that file, and that was one of them.

If it helps at all, to set the Z-Offset I used the following with a feeler gauge (probably not the easiest way but it worked :):

G28 (wait for it to auto level a the center)
G1 Z5 and work my way to Z0 testing with the feeler gauge. If I reach 0 and it's still loose then I use the following commands and added a negative number based on an estimate of how much farther I need to go. For example M851 Z-1 etc.

M851 Z< - + offset Value> ie M851 Z-1
M500 (save to eprom)
M501 (Verify the value has set)
G28 Reset
G1 Z2 and work your way back to 0 again. At this point if 0 is good you have your offset, if you have some room to go (for example you get to Z.42) then subtract it from the Z-1 and then re-enter the new value as listed below. If it's still loose then decrease the Z value and try again. (M851 Z-1.5 etc)

M851 Z-.58
M500
G28

If you have a better way of working this out let me know.

-Tom

makeal
Posts: 77
Joined: Sat Aug 25, 2018 2:13 pm

Re: M2 V4 Extruder Mod

Post by makeal » Tue Dec 04, 2018 3:11 pm

tslove28 wrote:
Mon Dec 03, 2018 8:56 pm
makeal wrote:
Mon Dec 03, 2018 7:16 pm
Very nice. i'm running bltouch as well and 1.1.9 Still working on getting the zoffset good . so the mounting plate from M3 ID rev. 0 works fine on M2? Need to see if I can buy it from makergear
Can you post your part cooling fan shroud that you used with 40mm fan? also It looks like your connector mount is flipped. Was that done on purpose?

also what revision is your M2? and what does / #define DIGIPOT_MOTOR_CURRENT { 135,135,135,135,135 } // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A) do?

Thank you
Alex
I'm not sure about the connector mount being flipped, most likely it was just ignorance as to how it should look :). I believe that the Digipot_motor_current sets the current available to the stepper motors. There were only a couple of changes I could find in that file, and that was one of them.

If it helps at all, to set the Z-Offset I used the following with a feeler gauge (probably not the easiest way but it worked :):

G28 (wait for it to auto level a the center)
G1 Z5 and work my way to Z0 testing with the feeler gauge. If I reach 0 and it's still loose then I use the following commands and added a negative number based on an estimate of how much farther I need to go. For example M851 Z-1 etc.

M851 Z< - + offset Value> ie M851 Z-1
M500 (save to eprom)
M501 (Verify the value has set)
G28 Reset
G1 Z2 and work your way back to 0 again. At this point if 0 is good you have your offset, if you have some room to go (for example you get to Z.42) then subtract it from the Z-1 and then re-enter the new value as listed below. If it's still loose then decrease the Z value and try again. (M851 Z-1.5 etc)

M851 Z-.58
M500
G28

If you have a better way of working this out let me know.

-Tom
Hi Tom. I followed this video https://www.youtube.com/watch?v=y_1Kg45APko and it seemed to work. My offset with another mount is z-2.12 for now but i need to increase it as first layer is still not that good.

what was the size of the feeler gauge you used?

reason why i asked if it was flipped is because this is how my original filament drive looks like
Screenshot 2018-12-04 09.11.11.png
and my electronics mount is on the right side, yours is on the left
Screenshot 2018-12-04 09.11.03.png

tslove28
Posts: 5
Joined: Sat Nov 10, 2018 6:38 pm

Re: M2 V4 Extruder Mod

Post by tslove28 » Tue Dec 04, 2018 8:22 pm

makeal wrote:
Tue Dec 04, 2018 3:11 pm
tslove28 wrote:
Mon Dec 03, 2018 8:56 pm
makeal wrote:
Mon Dec 03, 2018 7:16 pm
Very nice. i'm running bltouch as well and 1.1.9 Still working on getting the zoffset good . so the mounting plate from M3 ID rev. 0 works fine on M2? Need to see if I can buy it from makergear
Can you post your part cooling fan shroud that you used with 40mm fan? also It looks like your connector mount is flipped. Was that done on purpose?

also what revision is your M2? and what does / #define DIGIPOT_MOTOR_CURRENT { 135,135,135,135,135 } // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A) do?

Thank you
Alex
I'm not sure about the connector mount being flipped, most likely it was just ignorance as to how it should look :). I believe that the Digipot_motor_current sets the current available to the stepper motors. There were only a couple of changes I could find in that file, and that was one of them.

If it helps at all, to set the Z-Offset I used the following with a feeler gauge (probably not the easiest way but it worked :):

G28 (wait for it to auto level a the center)
G1 Z5 and work my way to Z0 testing with the feeler gauge. If I reach 0 and it's still loose then I use the following commands and added a negative number based on an estimate of how much farther I need to go. For example M851 Z-1 etc.

M851 Z< - + offset Value> ie M851 Z-1
M500 (save to eprom)
M501 (Verify the value has set)
G28 Reset
G1 Z2 and work your way back to 0 again. At this point if 0 is good you have your offset, if you have some room to go (for example you get to Z.42) then subtract it from the Z-1 and then re-enter the new value as listed below. If it's still loose then decrease the Z value and try again. (M851 Z-1.5 etc)

M851 Z-.58
M500
G28

If you have a better way of working this out let me know.

-Tom
Hi Tom. I followed this video https://www.youtube.com/watch?v=y_1Kg45APko and it seemed to work. My offset with another mount is z-2.12 for now but i need to increase it as first layer is still not that good.

what was the size of the feeler gauge you used?

reason why i asked if it was flipped is because this is how my original filament drive looks like
Screenshot 2018-12-04 09.11.11.png

and my electronics mount is on the right side, yours is on the left
Screenshot 2018-12-04 09.11.03.png
I understand now, I ended up modeling things based on the layout of the M3 ID. The wiring looms are on the opposite side. I don't think it matters with the single extruder. I used a .15mm shim. It didn't get it to where I wanted it exactly. I don't have a machinist's feel for when things are right. Once I got it close, I just increased the z-offset by .05 mm until it looked good.

makeal
Posts: 77
Joined: Sat Aug 25, 2018 2:13 pm

Re: M2 V4 Extruder Mod

Post by makeal » Tue Dec 04, 2018 8:25 pm

tslove28 wrote:
Tue Dec 04, 2018 8:22 pm
makeal wrote:
Tue Dec 04, 2018 3:11 pm
tslove28 wrote:
Mon Dec 03, 2018 8:56 pm


I'm not sure about the connector mount being flipped, most likely it was just ignorance as to how it should look :). I believe that the Digipot_motor_current sets the current available to the stepper motors. There were only a couple of changes I could find in that file, and that was one of them.

If it helps at all, to set the Z-Offset I used the following with a feeler gauge (probably not the easiest way but it worked :):

G28 (wait for it to auto level a the center)
G1 Z5 and work my way to Z0 testing with the feeler gauge. If I reach 0 and it's still loose then I use the following commands and added a negative number based on an estimate of how much farther I need to go. For example M851 Z-1 etc.

M851 Z< - + offset Value> ie M851 Z-1
M500 (save to eprom)
M501 (Verify the value has set)
G28 Reset
G1 Z2 and work your way back to 0 again. At this point if 0 is good you have your offset, if you have some room to go (for example you get to Z.42) then subtract it from the Z-1 and then re-enter the new value as listed below. If it's still loose then decrease the Z value and try again. (M851 Z-1.5 etc)

M851 Z-.58
M500
G28

If you have a better way of working this out let me know.

-Tom
Hi Tom. I followed this video https://www.youtube.com/watch?v=y_1Kg45APko and it seemed to work. My offset with another mount is z-2.12 for now but i need to increase it as first layer is still not that good.

what was the size of the feeler gauge you used?

reason why i asked if it was flipped is because this is how my original filament drive looks like
Screenshot 2018-12-04 09.11.11.png

and my electronics mount is on the right side, yours is on the left
Screenshot 2018-12-04 09.11.03.png
I understand now, I ended up modeling things based on the layout of the M3 ID. The wiring looms are on the opposite side. I don't think it matters with the single extruder. I used a .15mm shim. It didn't get it to where I wanted it exactly. I don't have a machinist's feel for when things are right. Once I got it close, I just increased the z-offset by .05 mm until it looked good.
If you enabled babystepping in configuration_adv.h you can do it on the fly with LCD

tslove28
Posts: 5
Joined: Sat Nov 10, 2018 6:38 pm

Re: M2 V4 Extruder Mod

Post by tslove28 » Tue Dec 04, 2018 8:30 pm

jprochnow wrote:
Mon Dec 03, 2018 6:27 pm
Very interesting mod. I'm definitely going to be using the probe mount if things align to the m3se Hotend plate. I'm fairly new to Marlin modding but if I were to use your config file on a rev e machine(black motor) I should be able to just update the z esteps to get it to work correctly with my machine. Is that correct?
I think so. You will most likely have to monkey around with the x-axis to make sure it homes properly. The Marlin site has a description of how to verify that each axis homes properly and what option to flip if it doesn't. I spent a little bit of time with my finger on the power button try to avert disaster :D . I've got 2 weeks of evenings under my belt trying to figure out how the firmware works, so I'm not sure how these things impact between machine versions.

Post Reply