Help! Single Arduino control of a Darwin February 12, 2014 05:34AM |
Registered: 10 years ago Posts: 6 |
Re: Help! Single Arduino control of a Darwin February 12, 2014 11:13AM |
Admin Registered: 14 years ago Posts: 730 |
Re: Help! Single Arduino control of a Darwin February 12, 2014 05:58PM |
Registered: 10 years ago Posts: 6 |
Re: Help! Single Arduino control of a Darwin February 20, 2014 11:27AM |
Admin Registered: 14 years ago Posts: 730 |
Re: Help! Single Arduino control of a Darwin March 05, 2014 02:33PM |
Admin Registered: 16 years ago Posts: 1,470 |
Help improve the RepRap wiki!
Just click "Edit" in the top-right corner of the page and start typing. Anyone can edit the wiki! |
Re: Help! Single Arduino control of a Darwin March 06, 2014 07:54AM |
Registered: 10 years ago Posts: 6 |
Re: Help! Single Arduino control of a Darwin March 06, 2014 12:14PM |
Admin Registered: 14 years ago Posts: 730 |
Quote
nophead
Just replace all the occurrences of "word" in the RepRap code with something else, like "Word" and you will be fine.
Re: Help! Single Arduino control of a Darwin March 06, 2014 08:56PM |
Admin Registered: 16 years ago Posts: 1,470 |
Quote
ssloan
I have tried to load the GCode_Interpreter into the Arduino 1.0.5 software
Help improve the RepRap wiki!
Just click "Edit" in the top-right corner of the page and start typing. Anyone can edit the wiki! |
Re: Help! Single Arduino control of a Darwin March 12, 2014 06:11AM |
Registered: 14 years ago Posts: 7,616 |
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Help! Single Arduino control of a Darwin March 13, 2014 05:33PM |
Registered: 10 years ago Posts: 6 |
Re: Help! Single Arduino control of a Darwin April 09, 2014 12:17PM |
Registered: 10 years ago Posts: 6 |
Re: Help! Single Arduino control of a Darwin April 09, 2014 04:33PM |
Admin Registered: 14 years ago Posts: 730 |
Re: Help! Single Arduino control of a Darwin April 09, 2014 06:06PM |
Registered: 10 years ago Posts: 6 |
Re: Help! Single Arduino control of a Darwin April 10, 2014 12:10AM |
Admin Registered: 14 years ago Posts: 730 |
Yes, I think this is correct. For the thermistor table you may need to copy over the numbers found in an older table (maybe there is a table with the older Gcode_Interpreter code). A newer one may work fine too, if things are configured properly.Quote
ssloan
Does this mean that the output will be on the D8 connector?
Re: Help! Single Arduino control of a Darwin April 10, 2014 06:26AM |
Registered: 14 years ago Posts: 7,616 |
Quote
MattMoses
I think "DC_EXTRUDER_PWM 180" sets the motor speed, as in 180/255 * full voltage. This may be the nominal or average speed (or even a constant speed).
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Help! Single Arduino control of a Darwin April 10, 2014 11:27AM |
Admin Registered: 14 years ago Posts: 730 |
G1 X104.332 Y89.469 E29.15385 G1 X104.565 Y88.599 E29.18031 G1 X103.293 Y87.326 E29.23325 G1 X102.423 Y87.559 E29.25971where the E values set the speed of the extruder. In your case, these values will be ignored and you will need to turn the extruder on/off with the commands (I think) M101 and M103 - see the G-code reference page. You may be able to get away with simply turning on the extruder at the beginning of a print and leaving it on until the end (an easy modification to make to a G-code file with a text editor) or you might need to turn it on and off many times during a print... kinda depends on the print I guess. I am not sure if a modern slicer can be configured to generate M101/M103 commands instead of E values.