[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 574: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 630: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 494: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 195: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3937)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 196: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3937)
Build Your Own SLA/SLS A forum dedicated to helping you build your own SLA/SLS-based 3d printer 2016-05-20T13:37:54-04:00 https://www.buildyourownsla.com/forum/feed.php?f=3&t=4967 2016-05-20T13:37:54-04:00 2016-05-20T13:37:54-04:00 https://www.buildyourownsla.com/forum/viewtopic.php?t=4967&p=14759#p14759 <![CDATA[Re: HELP to configure CW+arduino: this is what my first print looks like.]]> Thank you very much for your satisfying reply.

Statistics: Posted by torla91 — Fri May 20, 2016 1:37 pm


]]>
2016-05-16T10:07:04-04:00 2016-05-16T10:07:04-04:00 https://www.buildyourownsla.com/forum/viewtopic.php?t=4967&p=14731#p14731 <![CDATA[Re: HELP to configure CW+arduino: this is what my first print looks like.]]>


look for...
#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,200.0*8/3,760*1.1}

This will set the travel distance per unit, and if set correctly should put your Z axis scale where it should be. I don't believe there is a Z-adjustment in Creation Workshop, it must be altered in your firmware.

Here is a c/p from a tutorial with a few examples.....

Z steps

Most RepRap printers use a pair of threaded rods for the Z axis. So to calculate how far the Z axis moves for each revolution of the motor, first you need to know how much rotation is being transmitted to the Z rods, and then use the "thread pitch" of the rod (distance-per-revolution) to determine the vertical motion.
The basic formula to calculate motion on a rotating rod is:
steps_per_mm = (motor_steps_per_rev * driver_microstep) / thread_pitch
Some common examples:
// NEMA 17 with standard pitch M5 threaded rod:
(200 * 16) / 0.8 = 4000

// NEMA 17 with standard pitch M8 threaded rod:
(200 * 16) / 1.25 = 2560

// NEMA 17 with SAE 5/16" threaded rod. It has 18 threads per inch (25.4mm / 18):
(200 * 16) / (25.4 / 18) = 2267.7165355

And another link...


Stepper motor calc....


another...


Again, you will have to dig through these links to find what you need.

Statistics: Posted by SlowSL — Mon May 16, 2016 10:07 am


]]>
2016-02-23T14:38:59-04:00 2016-02-23T14:38:59-04:00 https://www.buildyourownsla.com/forum/viewtopic.php?t=4967&p=14318#p14318 <![CDATA[HELP to configure CW+arduino: this is what my first print looks like.]]> Image
and this is one of the first prints:
Image
The problem is that the dimensions of the model are not the true ones, and i can not figure out how to configure the machine to work properly.
For what concern the XY axis, i can configure the axis simply correcting the scale through the machine settings of CW, but for the Z axis i'm having a lot of problem.
i'm using a stepper motor (1.8deg/step, 200 step/turn, 1/16th step drive) connected to a trapezoidal screw with a thread 10x3 DX.

The arduino code is this: .

which is the true procedure to configure the machine Z axis? thank you in advance.

Statistics: Posted by torla91 — Tue Feb 23, 2016 2:38 pm


]]>