From: Bdale Garbee Date: Mon, 12 Dec 2022 06:33:01 +0000 (-0700) Subject: update drill_top.gnumeric to reflect QuantiMotor v1p2 hole locations X-Git-Tag: fab-v1p2~12 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=20a9055b5b16b774aa32182baf4ac6bc083bd64e;p=hw%2Fquantimotor update drill_top.gnumeric to reflect QuantiMotor v1p2 hole locations --- diff --git a/drill_top.gnumeric b/drill_top.gnumeric index 620e693..7881e1c 100644 Binary files a/drill_top.gnumeric and b/drill_top.gnumeric differ diff --git a/drill_top.ngc b/drill_top.ngc deleted file mode 100644 index 574beb6..0000000 --- a/drill_top.ngc +++ /dev/null @@ -1,69 +0,0 @@ - -(0.25 ammo box top, 0.125 spot drill) - -G17 G20 G90 -G00 Z 0.25 -M3 S5000 - -(J8) -G00 X0 Y0 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(D2) -G00 X0.065 Y1.400 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(D1) -G00 X0.065 Y0.925 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(D5) -G00 X0.065 Y-0.450 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(D6) -G00 X0.065 Y-0.925 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(D7) -G00 X0.065 Y-1.400 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(H1) -G00 X-1.893 Y-1.142 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(H2) -G00 X-1.893 Y1.142 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(H3) -G00 X-0.180 Y-1.142 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(H4) -G00 X-0.180 Y1.142 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(SW1) -G00 X-1.102 Y2.165 -G01 Z -0.05 F 5 -G00 Z 0.25 - -(SW2) -G00 X-1.102 Y-2.165 -G01 Z -0.05 F 5 -G00 Z 0.25 - -M5 M2 -% diff --git a/drill_top.py b/drill_top.py deleted file mode 100755 index e5f4018..0000000 --- a/drill_top.py +++ /dev/null @@ -1,90 +0,0 @@ -#! /usr/bin/python -# Copyright 2017 by Bdale Garbee . GPLv3+ - -# drill holes in top of ammo box for TeleFireOne - -# Z reference plane is top surface of stock -# X/Y origin is center of BNC connector hole - -import math - -StockDepth = 0.250 # >= thickness of steel top on the ammo box - -CutterOD = 0.125 # 1/8" end mill - -Zfree = 0.250 # height in Z to clear all obstructions -Zspot = 0.050 # how deep to spot drill - -Speed = 10 # cutting speed -PSpeed = 5 # plunge speed - -def spot(): - print "G01 Z",-Zspot," F",PSpeed - print "G00 Z",Zfree - print - -def retract(): - print "G00 Z",Zfree - -print -print "(%s ammo box top, %s spot drill)" % (StockDepth, CutterOD) -print - -print "G17 G20 G90" -retract() -print "M3 S5000" -print - -# spot drill all holes for box top - -print "(J8)" -print "G00 X0 Y0" -spot() - -print "(D2)" -print "G00 X0.065 Y1.400" -spot() - -print "(D1)" -print "G00 X0.065 Y0.925" -spot() - -print "(D5)" -print "G00 X0.065 Y-0.450" -spot() - -print "(D6)" -print "G00 X0.065 Y-0.925" -spot() - -print "(D7)" -print "G00 X0.065 Y-1.400" -spot() - -print "(H1)" -print "G00 X-1.893 Y-1.142" -spot() - -print "(H2)" -print "G00 X-1.893 Y1.142" -spot() - -print "(H3)" -print "G00 X-0.180 Y-1.142" -spot() - -print "(H4)" -print "G00 X-0.180 Y1.142" -spot() - -print "(SW1)" -print "G00 X-1.102 Y2.165" -spot() - -print "(SW2)" -print "G00 X-1.102 Y-2.165" -spot() - -print "M5 M2" -print "%" -