RickMcConney / PenPlotter

Polar graph controler that uses repetier firmware. Inspired by work at http://www.polargraph.co.uk
GNU General Public License v2.0
120 stars 26 forks source link

gcode type #5

Closed mcmasterp closed 7 years ago

mcmasterp commented 8 years ago

Not sure if this is the right way to go about this but I am using vetrics aspire to generate toolpaths. it has many post processors to output gcode into tons of formats for different machines. I tried a few that seemed generic bt when I load the resulting .nc files it's blank and clicking plot does nothing. thanks for the awesome software though!

RickMcConney commented 8 years ago

The gcode parser is pretty simplistic try the grbl post processor if Vetrics has one that should be the closest. Basically you want to end up with a file that just has G0, G1, G2, G3, G21 and G20 commands in it, the parser should skip over other lines. This will cause problems with some post processors that only output the G1 or G0 command once then just have X, Y lines. Each line must start with a G command.

mcmasterp commented 8 years ago

Oh yes I should have replied. It does work perfectly, it was my mistake. I size the work piece in ventric to be the size of paper I used in inches. I had to change it to mm and make the piece quadruple the size. I finally noticed this when I realized that loading geode created a tiny dot on the page. Sure enough after a whole lot of zooming in it was there.

Thanks again for the amazing work. I took my drawbot to mothers day brunch and drew happy mothers day signs for all the moms. Everyone loved it On May 9, 2016 10:02 AM, "RickMcConney" notifications@github.com wrote:

The gcode parser is pretty simplistic try the grbl post processor if Vetrics has one that should be the closest. Basically you want to end up with a file that just has G0, G1, G2, G3, G21 and G20 commands in it, the parser should skip over other lines. This will cause problems with some post processors that only output the G1 or G0 command once then just have X, Y lines. Each line must start with a G command.

— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub https://github.com/RickMcConney/PenPlotter/issues/5#issuecomment-217872945