-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb86485
commit 50c8cdc
Showing
12 changed files
with
223 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(go_home.ngc) | ||
|
||
O <go_home> sub | ||
G0 Z0.500 | ||
G0 X0 Y0 | ||
O <go_home> endsub | ||
|
||
M2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
O <touch_plate> sub | ||
g91 (switch to relative coordinates) | ||
G38.2 Z-10 F6 (down fast to get approximate) | ||
F10 G1 Z.6 (up .08) | ||
G38.2 Z-1 F1 (down slow to get exact) | ||
F10 G1 Z1 (up .1) | ||
|
||
(vesion 1 set but at 0 and manually hit zero button) | ||
T0 M6 (pause) | ||
F10 G1 Z-.18 (down to true zero - .1 up + .08 thickness of plate) | ||
g90 (switch to absolute coordinates) | ||
|
||
|
||
(Version 2) | ||
(g90) | ||
(G38.2 Z-1 F1) | ||
(G10 L20 P0 Z0.1230) | ||
(G0 Z.5) | ||
|
||
|
||
(Version 3) | ||
(g90) | ||
(G38.2 Z-1 F1) | ||
(G92 Z0.1230) | ||
(G0 Z.5) | ||
|
||
O <touch_plate> endsub | ||
M2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
THREAD servo-thread | ||
MAXCHAN 4 | ||
HMULT 1 | ||
HZOOM 1 | ||
HPOS 5.000000e-01 | ||
TMODE 0 | ||
RMODE 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Include your custom_postgui HAL commands here | ||
# This file will not be overwritten when you run PNCconf again | ||
|
||
# set up the touch plate button | ||
net remote-laserzero halui.mdi-command-01 <= pyvcp.laserzero |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?xml version="1.0"?> | ||
<interface> | ||
<!-- interface-requires gladevcp 0.0 --> | ||
<requires lib="gtk+" version="2.16"/> | ||
<!-- interface-naming-policy project-wide --> | ||
<object class="GtkWindow" id="window1"> | ||
<property name="width_request">100</property> | ||
<child> | ||
<object class="GtkVBox" id="vbox1"> | ||
<property name="visible">True</property> | ||
|
||
<child> | ||
<object class="HAL_HBar" id="spindle-speed"> | ||
<property name="visible">True</property> | ||
<property name="force_height">36</property> | ||
<property name="max">1000</property> | ||
|
||
<property name="z0_color">#0000ffff0000</property> | ||
<property name="value">44.25</property> | ||
<property name="z1_color">#ffffffff0000</property> | ||
<property name="bg_color">#bebebebebebe</property> | ||
<property name="text_template">Spindle: % 4d RPM</property> | ||
<property name="z0_border">0.94999998807907104</property> | ||
<property name="z2_color">#ffff00000000</property> | ||
<property name="show_limits">False</property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
|
||
<child> | ||
<object class="GtkHBox" id="hbox1"> | ||
<property name="visible">True</property> | ||
<child> | ||
<object class="GtkLabel" id="label1"> | ||
<property name="visible">True</property> | ||
<property name="ypad">5</property> | ||
<property name="label" translatable="yes"> Spindle Up To Speed </property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="HAL_LED" id="spindle-at-speed-led"> | ||
<property name="visible">True</property> | ||
<property name="led_shape">2</property> | ||
<property name="on_color">green</property> | ||
<property name="led_size">5</property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="padding">10</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
|
||
<child> | ||
<object class="HAL_Table" id="button-box-active"> | ||
<property name="visible">True</property> | ||
<property name="n_rows">5</property> | ||
<property name="homogeneous">False</property> | ||
|
||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">2</property> | ||
</packing> | ||
</child> | ||
</object> | ||
</child> | ||
</object> | ||
</interface> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These files are loaded post gladeVCP, in the order they appear | ||
|
||
source gvcp_options.hal | ||
source custom_gvcp.hal |
Oops, something went wrong.