You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/gui/gmoccapy.adoc
+17-26Lines changed: 17 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,9 +110,11 @@ So let us take a closer look at the INI file and what you need to include to use
110
110
DISPLAY = gmoccapy
111
111
PREFERENCE_FILE_PATH = gmoccapy_preferences
112
112
MAX_FEED_OVERRIDE = 1.5
113
-
MAX_SPINDLE_OVERRIDE = 1.2
114
-
MIN_SPINDLE_OVERRIDE = 0.5
115
-
DEFAULT_SPINDLE_SPEED = 500
113
+
MIN_SPINDLE_0_OVERRIDE = 0.5
114
+
MAX_SPINDLE_0_OVERRIDE = 1.2
115
+
DEFAULT_SPINDLE_0_SPEED = 500
116
+
MIN_SPINDLE_0_SPEED = 0
117
+
MAX_SPINDLE_0_SPEED = 3000
116
118
LATHE = 1
117
119
BACK_TOOL_LATHE = 1
118
120
PROGRAM_PREFIX = ../../nc_files/
@@ -135,10 +137,10 @@ If you only want to use one file for several machines, you need to include `PREF
135
137
[NOTE]
136
138
If no value is given, it will be set to 1.0.
137
139
138
-
- _MIN_SPINDLE_OVERRIDE = 0.5_ and _MAX_SPINDLE_OVERRIDE = 1.2_ - Will allow you to change the spindle override within a limit from 50% to 120%.
140
+
- _MIN_SPINDLE_0_OVERRIDE = 0.5_ and _MAX_SPINDLE_0_OVERRIDE = 1.2_ - Will allow you to change the spindle override within a limit from 80% to 120%.
139
141
+
140
142
[NOTE]
141
-
If no values are given, MIN will be set to 0.1 and MAX to 1.0.
143
+
If no values are given, MIN will be set to 0.5 and MAX to 1.0.
142
144
143
145
- _LATHE = 1_ - Set the screen layout to control a lathe.
144
146
- _BACK_TOOL_LATHE = 1_ - Is optional and will switch the X axis in a way you need for a back tool lathe.
@@ -154,7 +156,14 @@ See also the <<gmoccapy:lathe-section,Lathe Specific Section>>.
154
156
If not specified, GMOCCAPY will look in the following order for NGC files:
155
157
First `linuxcnc/nc_files` and then the users home directory.
156
158
157
-
- _DEFAULT_SPINDLE_SPEED_ - Start value for <<gmoccapy-settings-spindle,"Starting RPM">> if value not present in preferences file or file is not present. Will have no effect with valid preferences file.
159
+
- _DEFAULT_SPINDLE_0_SPEED_ - Sets the rpm to be used if the spindle is started and no S value has been set. Defaults to 200.
160
+
- _MIN_SPINDLE_0_SPEED_ - Sets the lower limit of the spindle bar shown in the spindle frame on the main screen. Defaults to 100.
161
+
- _MAX_SPINDLE_0_SPEED_ - Sets the upper limit of the spindle bar shown in the spindle frame on the main screen. Defaults to 2500.
162
+
163
+
[NOTE]
164
+
It is no error giving values that didn't match the minimum and maximum speed of the spindle.
165
+
If you set _Spindle bar max_ to 2000 and your spindle makes 4000 RPM, only the bar level will be wrong on higher speeds than 2000 RPM.
166
+
158
167
159
168
- _MIN_ANGULAR_VELOCITY_ - Sets the minimal jog velocity of the machine for rotary axes.
160
169
- _MAX_ANGULAR_VELOCITY_ - Sets the maximal jog velocity of the machine for rotary axes.
0 commit comments