Hello Guest it is April 19, 2024, 12:42:01 AM

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 - DazTheGas

581
Mach4 General Discussion / Re: Lua Signal Table
« on: January 03, 2016, 05:30:14 AM »
You are trying to do it the old way, in your table your using the on_off but in your signal script your using state ,

Put your signal script back to how it was and use the already created table in the startup script and a signal like this

Code: [Select]
[mc.ISIG_INPUT63] = function (state)
   if (state == 1) then   
       mc.mcCntlFeedHold(inst)
    else
    --    do something else or not
    end
end,

DazTheGas

582
Mach4 General Discussion / Re: Backlash not applied during manual JOG?
« on: January 03, 2016, 05:01:45 AM »
Backlash is not yet implemented in the ESS plugin but will be in the new plugin that should be release shortly (please).

DazTheGas

583
Mach4 General Discussion / Re: Lua Signal Table
« on: January 02, 2016, 02:41:33 PM »
If you want to use the table version of this then your best place to add it is within the startup script, it is declared only once there and there are examples already there, this creates a table of signal check and what to do with them, this is then activated from the signal script the same as a function would be in the PLC.

DazTheGas

584
Mach4 General Discussion / Re: Version 2803 Problems
« on: January 02, 2016, 02:33:44 PM »
This screen has alway been there in the config section of the plugin.

Step 1 open the plugins.


Step 2 open ESS configure


Step 3 goto homing tab within plugin


DazTheGas

585
Mach4 General Discussion / Re: Probe obstructed error
« on: January 02, 2016, 10:54:03 AM »
If you are seeing the switching on the led then it is working, other things to check is that you have filled in the settings correct on the settings tab of the probing screen.

DazTheGas

586
Mach4 General Discussion / Re: Probe obstructed error
« on: January 02, 2016, 09:41:29 AM »
You need to be using the diagnostic leds to check that the probe is working first and setup correct before trying to use the probing screen.

DazTheGas

587
Mach4 General Discussion / Re: Probe obstructed error
« on: January 02, 2016, 09:13:35 AM »
Looks like you need to flip your input signal as mach4 is seeing the signal as active, try ticking the active low box on the signal input, also verify on the diagnostic screen that the probe is lighting the led.

DazTheGas

588
Mach4 General Discussion / Re: Probe obstructed error
« on: January 02, 2016, 08:40:49 AM »
The make of the probe etc would help out quite a lot.

DazTheGas

589
Mach4 General Discussion / Re: Version 2803 Problems
« on: January 01, 2016, 03:48:58 PM »
As I thought, you need to set your homing in the ess config, yours is empty so the ess dont know what to do.

Heres an example

DazTheGas

590
No reason they both do the same thing,

DazTheGas