Hello Guest it is April 19, 2024, 08:45:38 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 - PvdBos

Pages: 1
1
Hello cnc profs

I have create my own cnc milling machine with the devices in this topic.
this working fine but I wil controlling my HX-WS400 spindle with the PWM from mach3
this is working but my motor is not spinning on full speed about 60%.

does anyone have experions how to controle this?

I have this configuration:
5Axis port 1 PWM > PWM input HX-WS400
GND        >           GND
EN/DIS    >           EN/DIS
P17         >           F/R

when i put in Mach3 MDI input m03 s1200 then my spindle is spinning but not full speed m05 stopts

2
G-Code, CAD, and CAM discussions / Re: 360 circle with Z drive slow down
« on: October 25, 2015, 09:05:04 AM »
Hello again.

I have study  this code but this is not wat I want.
I have now the code working but only nust I create the holes on multiple places
CODE:
(--38mm gat--)
G00 G17 G21 G49 G80 G90 G54 (Safety Block)

(Program the Parameters)
#1 = 1.0  ( Safe Z )
#2 = -0.2 ( Engraving Depth Z )
( Start the Process)

G00 X17.7 Y0 Z1
M03  S8000 M8
G01 Z0 F50 ( Move to Z zero)
M98 P1000 L10  ( Call Sub, loop 10 times)
G00 Z#1
X0 Y0
M30

O1000
G03 X17.7 I0 Z#2 F850
#2=[#2-0.2]
M99
%
Thanks

3
G-Code, CAD, and CAM discussions / Re: 360 circle with Z drive slow down
« on: October 24, 2015, 03:40:04 PM »
BR549 thank you verry verry much for the code.

4
G-Code, CAD, and CAM discussions / Re: 360 circle with Z drive slow down
« on: October 24, 2015, 12:35:33 PM »
Br439 and Gerry thanks for the code it's forking fine but the code is not flexible. What I want is that the "L" gifs the deep in 0.2mm per circle
L10 is 2MM deep etc.

I want to gifs an X and Y value and an radius and the code make the hole.
 

5
G-Code, CAD, and CAM discussions / Re: 360 circle with Z drive slow down
« on: October 24, 2015, 10:24:28 AM »
there are two holes with the same diameter one X0 Y40 and one X0 y-40
and the diameter is 38mm and 2 deep.

6
G-Code, CAD, and CAM discussions / Re: 360 circle with Z drive slow down
« on: October 24, 2015, 09:20:18 AM »
The wizard create code that is to lang for my DEMO of Mach3.....

7
G-Code, CAD, and CAM discussions / 360 circle with Z drive slow down
« on: October 24, 2015, 07:35:45 AM »
Hello all

an question about milling a hole.
I wil like to mill a round hole of 38 mm with a milling tool of 2.6 mm that go 5 times round the circle  and that the Z access 2mm going down 0.2 mm per 360/circle.
here is my code:

but this code make a circle of 80mm and not 38mm wath's wrong?

(--38mm gat--)
G00 G17 G21 G49 G80 G90
(-- FREES 2.6MM --)
T1 M06
G00 G17 G90 G54 X0 Y0 S8000 M03
G43 H0 Z2 M08
#1 = 1.0  ( Safe Z )
#2 = -0.2 ( Engraving Depth Z )
G00 X17.7 Y40
M98 P1000 L1
G00 Z#1
G00 X17.7 Y-40
M98 P1000 L1
G00 Z#1
G00 Z20
M30
(--CONTOUR--)
O1000
G03 Z#2 F450 I0 J0 
#2=[#2-0.2]
M99

8
G-Code, CAD, and CAM discussions / Re: Help my with > #1 = Z2.000
« on: January 06, 2013, 12:28:34 PM »
Thanks....
It works fine now.
 :) :) :)

9
G-Code, CAD, and CAM discussions / Help my with > #1 = Z2.000
« on: January 06, 2013, 09:31:02 AM »
Hello.
how can I when I make a loop with the M98 code
the Z-axis always lowered 0.1 mm per loop. example:

(-- START MOTION --)
M98 P1000 L3 (-- 3 Times the Sub Program)
G90
M30
(-- END MOTION --)

(-- SUB PROGRAM --)
O1000
#2 = #2 -0.1 (--this is not working-- :()
G00 G42 X-1.6 Y-9.87
G01 Z#2 F200 M03
G03 X-3.54 Y-9.37 R2
G02 X-15.76 Y-20.12 R14.52
G03 X-16.65 Y-23.74 R2.0
G03 X0.0 Y-29.0 R29.0
G03 X0.0 Y-8.0 R10.5
G02 X-1.28 Y-7.9 R8.0
G03 X-3.54 Y-9.39 R2.0
G03 X-1.6 Y-9.87 R2.0
G00 Z#1
G00 X8.89 Y-4.57
M99

Pages: 1