Hello Guest it is April 29, 2024, 09:40:09 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mach_user

Pages: 1
1
G-Code, CAD, and CAM discussions / Re: G code problems
« on: October 14, 2012, 08:44:18 AM »
I want to draw this shape: http://scr.hu/0ot/7pq04

My G code for this is:
Code: [Select]
N1 G21 G18 G71
N2 G01 Z0 X51
N3 G01 Z106 X85 F509
N4 G03 Z224 X47 R100 F469
N5 G01 Z295 X47 F469
N6 M30

In mach3: http://scr.hu/0ot/w4zlu
when I change G03 to G02: http://scr.hu/0ot/thedr
what's wrong with it?

2
G-Code, CAD, and CAM discussions / G code problems
« on: October 12, 2012, 12:40:05 PM »
Hello!

I wrote program whitch generate gcode. I have this shape: http://scr.hu/0ot/647p2
My program generated this code:
Code: [Select]
N1 G21 G18
N2 G01 Z0 X51
N3 G01 Z106 X85 F509
N4 G03 Z224 X47 K140.946 I-8.69528 F469
N5 G01 Z295 X47 F469
N6 M30

when I want to load it i get: http://scr.hu/0ot/jmhy0
I tried with simpler gcode:
Code: [Select]
N1 G21 G18
N2 G01 Z0 X1
N3 G01 Z2 X1 F509
N4 G02 Z3 X2 K3 I1 F469
N3 G01 Z5 X5 F509
N6 M30

But i get this same error to... What do I do wrong? The problem is with arcs.

Pages: 1