Hello Guest it is May 06, 2024, 12:36:34 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

521
Mach4 General Discussion / Re: How many use Notepad++
« on: April 02, 2016, 04:47:41 PM »
Havin already been lucky to trying this it has made my coding a lot easier havin the mach api code highlghter in an editor I use a lot.

keep em coming

DazTheGas

522
Looking good  ;)

DazTheGas

523
Mach4 General Discussion / Re: Gcode mishaps
« on: April 02, 2016, 05:32:27 AM »
This part of the forum is for Mach4, your best bet is to repost in the General Mach Discussion to get more response.

DazTheGas

524
Mach4 Videos / Re: Mach4 and ESS Homing Offset Script UPDATED
« on: April 01, 2016, 10:25:54 AM »
I will check on this as I dont use softlimits myself but will have a look over the weekend.

one thing that possibly could help is setting the OSIG_SOFTLIMITS_ON to off at beginning of script then again to turn on after the offsets have been applied.

DazTheGas

525
SmoothStepper USB / Re: 3rd port question
« on: April 01, 2016, 08:03:47 AM »
Yes you will need another bob.

DazTheGas

526
Mach4 General Discussion / Re: Open Mach4 with default toolpath
« on: March 29, 2016, 07:17:20 PM »
The tab coords had been moved in the screen editor.

DazTheGas

527
Mach4 General Discussion / Re: Gcode mishaps
« on: March 29, 2016, 06:26:14 PM »
From the main screen menu bar click on Operator->Edit Screen - this will open up the screen editor.

On the top left you will see the Screen Tree Manager, Highlight the uppermost in the tree.

Below in the properties tab click on the second icon with the thunderbolt through it.

From there you should see 4 scripts and the uppermost is the Screen Load Script, click this to reveal a button that loads the script in an editor.

You will need to be on line 204

change the gcode to what you require the goto 0 to do.

DazTheGas

528
Mach4 General Discussion / Re: Open Mach4 with default toolpath
« on: March 29, 2016, 05:59:26 PM »
Debugging code is fun, finding a friend who has xp is a challenge ;-)

DazTheGas

529
Mach4 General Discussion / Re: Gcode mishaps
« on: March 29, 2016, 05:57:47 PM »
Not sure if you mean the goto zero, if so look in the screen load script for

Code: [Select]
---------------------------------------------------------------
-- Go To Work Zero() function.
---------------------------------------------------------------
function GoToWorkZero()
    mc.mcCntlMdiExecute(inst, "G00 X0 Y0 A0")--Without Z moves
    --mc.mcCntlMdiExecute(inst, "G00 G53 Z0\nG00 X0 Y0 A0\nG00 Z0")--With Z moves
end

DazTheGas

530
Mach4 General Discussion / Re: Open Mach4 with default toolpath
« on: March 29, 2016, 05:50:22 PM »
Not sure but looks like your running XP,

If so I will hunt down an xp machine tomoro and try, just wondering if there is an error between xp and mach4 thats actually outputting some error text you cant see before it draws the main tabs.

DazTheGas