update drill_top.gnumeric to reflect QuantiMotor v1p2 hole locations
authorBdale Garbee <bdale@gag.com>
Mon, 12 Dec 2022 06:33:01 +0000 (23:33 -0700)
committerBdale Garbee <bdale@gag.com>
Mon, 12 Dec 2022 06:33:01 +0000 (23:33 -0700)
drill_top.gnumeric
drill_top.ngc [deleted file]
drill_top.py [deleted file]

index 620e6938382593c30a0146b1ff639ed75860dc6d..7881e1c001d3a573537e0721a45d1c5973df3afa 100644 (file)
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 (file)
index 574beb6..0000000
+++ /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 (executable)
index e5f4018..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-#! /usr/bin/python
-# Copyright 2017 by Bdale Garbee <bdale@gag.com>.  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 "%"
-