Hello Guest it is April 25, 2024, 09:23:47 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - TPS

151
OK,
sorry did no test.
i think we have to wait for Klaus to show up, he is the screen specialist.

152
i you use machscreen:

https://kd-dietz.com/pages/eng/machscreen/description.html

you can enter the format you want to use for a dro input field.

153
General Mach Discussion / Re: Runaway Jog Mach 3
« on: March 23, 2023, 03:16:04 AM »
maybe a list of your files witch are in the plugin folder can help to identify the controller.

154
General Mach Discussion / Re: Mach3 not saving fixture settings
« on: March 17, 2023, 04:11:47 AM »
Config -> General Config -> Axis DRO properties -> Persistent Offsets

155
G-Code, CAD, and CAM discussions / Re: Drilling Machine Macro
« on: March 13, 2023, 01:37:55 PM »
so your G-code is looking like this:

G1 A10
M07
M09
G1 A20
.
.

M07 and M09 activate your Outputs for drill down/up

replace M07 and M09 for example by M400
so your G-Code will look like this

G1 A10
M400
G1 A20
.
.



now create a Macro M400.M1S in your profile folder C:\Mach3\macros\your profile name

Code: [Select]

'here activate the output for drill down
ActivateSignal(OUTPUT1)


'here we wait for an Input1 to go to high signal
While Not IsActive(Input1) 'drill down
  Sleep(10)
Wend

'here deactivate the output for drill down
DeactivateSignal(OUTPUT1)

'here we wait for an Input2 to go to high signal
While Not IsActive(Input2) 'drill up
  Sleep(10)
Wend


you have to replace Output1 and Input1/2 with the oenes you have declared in Port's&Pin's



156
4095 -> 10V

158
here:
https://en.cs-lab.eu/wp-content/uploads/2016/06/csmio-ip-s-konfiguracja-we_wy-artykul.pdf

is described how to read/write analog signal for CSMIO via macro.

159
Mach Screens / Re: Mach3: Where is lathe/mill mode set on startup?
« on: January 29, 2023, 04:27:34 AM »
it is indicated by the filending of your screenset file.
ABC.set -> is mill
ABC.lset -> is lathe

160
you can only reset workcoordinates not machinecoords.