• Scam Alert. Members are reminded to NOT send money to buy anything. Don't buy things remote and have it shipped - go get it yourself, pay in person, and take your equipment with you. Scammers have burned people on this forum. Urgency, secrecy, excuses, selling for friend, newish members, FUD, are RED FLAGS. A video conference call is not adequate assurance. Face to face interactions are required. Please report suspicions to the forum admins. Stay Safe - anyone can get scammed.

Gcode for Duplex Receptacle

slow-poke

Ultra Member
Does anyone have a gcode program for the old style duplex receptacle?

x=y=0 @ center mounting screw
1/8" tool diameter
 

Attachments

  • dr.jpg
    dr.jpg
    69 KB · Views: 1

jcdammeyer

John
Premium Member
Does anyone have a gcode program for the old style duplex receptacle?

x=y=0 @ center mounting screw
1/8" tool diameter
Are you wanting just the holes to be able to mount an outlet inside a box or a custom panel?
 

Attachments

  • OutletBox-3D-1d.jpg
    OutletBox-3D-1d.jpg
    308.2 KB · Views: 3
  • OutletBox-3D-1b.jpg
    OutletBox-3D-1b.jpg
    575.2 KB · Views: 3

jcdammeyer

John
Premium Member
Something like this?

1696440007003.png
 

Attachments

  • OutletBoxPlate_2 1_2 Axis Pocketing.txt
    23.4 KB · Views: 1
  • OutletBoxPlate_2 1_2 Axis Profiling.txt
    4.5 KB · Views: 2
  • OutletBoxPlate_Standard Drill.txt
    295 bytes · Views: 1

slow-poke

Ultra Member
Something like this.....

It's a bit of an unusual configuration, 3 x duplex

Required 8 lines of gCode plus the unused baggage:
(Duplex Top)
G0 G49 G40 G17 G80 G50 G90
M6 T5(TOOL DIA. 0.125)
G20 (Inch)
M03 S300
G64
G00 G43 H5 Z0

(right arc)
X0.3246 Y0.2546
G01 Z-0.1 F0.5
G3 X0.3246 Y1.2934 I0 J0.774 F0.15

(straight left)
G1 X -0.3246 F0.15

(Left arc)
X-0.3246 Y1.2934
G01 Z-0.1 F0.5
G3 X-0.3246 Y0.2546 I0 J0.774 F0.15

(straight right)
G1 X 0.3246 F0.15

G00 Z0
M5 M9
M30


IMG_0648.JPG IMG_0651R.jpg
 

jcdammeyer

John
Premium Member
Mine was bigger because I did a depth of cut 0.050. Plus entry exit ramps. That was for the inner profile. One of the programs milled it all away. Tedious.
 

slow-poke

Ultra Member
The arc length was a bit much by +/-2 degrees, I corrected for the final pair on the RHS, close enough
 

slow-poke

Ultra Member
Look at the feed rate 0.15.... I'd be running 5 at least.
I wanted tight corners so I used a small diameter tool, I start slow on the first pass, then speed up when I know it's working. Can you cut at 5 IPS with a 1/8" tool?
 

jcdammeyer

John
Premium Member
Mine was bigger because I did a depth of cut 0.050. Plus entry exit ramps. That was for the inner profile. One of the programs milled it all away. Tedious.
Oh and mine was also a good example of crap CAM software from Mecsoft which used a whole bunch of short lines rather than the IJ curves. Which just goes to show that if you learn how G-Code works it's possible to make small programs.
 

slow-poke

Ultra Member
Oh and mine was also a good example of crap CAM software from Mecsoft which used a whole bunch of short lines rather than the IJ curves. Which just goes to show that if you learn how G-Code works it's possible to make small programs.
I imagine anyone that has written even a few lines of machine code cringes when they download some trivial program like a clock, and it requires 500MB or more of disc space. I know I do.;-)
 
Top