Hello Guest it is March 19, 2024, 01:52:27 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 - TPS

1501
FAQs / Re: touch plate guru brew plan- not getting mx4660 to cooperate
« on: January 10, 2019, 02:48:40 AM »
ok had a look to the leadshine Manual.

you have to make a Bridge from the +12V out terminal to the OPTO2 teminal

and then you can use GND and Input3/4.

1502
FAQs / Re: touch plate guru brew plan- not getting mx4660 to cooperate
« on: January 10, 2019, 02:36:57 AM »
can you post the diagram?

1503
ok once again, as i have writen in reply #2

the macro Name has to be M***.m1s not myfantsiename.m1s

1504
VB and the development of wizards / Re: .mcc files
« on: January 09, 2019, 07:29:35 AM »
.mcc are compiled .m1s files.
if you do not have the original .m1s, no Chance to edit.

1505
i would put the code into a macro for example M110.M1s in your macro Folder.
this macro is called at the begin of your GCode with: M110

use a UserDro to make the Counts persitent.
in config ->General config you can make them persitent even mach3 is switched off.

code could be something like this:
Code: [Select]
Sub Main()
  'do the count
  SetUserDro(1400,GetUserDro(1400)+1)

  If GetUserDro(1400) > 100 Then

 
   DoButton( 24 )
   While IsMoving()
   Wend
 
   DoButton( 23 )
   While IsMoving()
   Wend
 
   DoButton( 22 )
   While IsMoving()
   Wend 
 
   DoButton( 25 )
   While IsMoving()
   Wend 
 
   'clear the Counter
   SetUserDro(1400,0) 
 End If
  End If

End Sub

code not tested

1506
FAQs / Re: touch plate guru brew plan- not getting mx4660 to cooperate
« on: January 09, 2019, 03:03:30 AM »
do a Little test wirh two wires.
one connected to input4
the other one connected to a GND terminal on your mx4660

now if you put the two wire together the Digitize LED in Diagnostic Screen should Show up.

1507
General Mach Discussion / Re: *** FORUM SEARCH FACILITY BROKEN ***
« on: January 09, 2019, 02:44:00 AM »
search fuction (internal and extrenal) seems to work again. Looks like there is an new Version of the Forum Software.

1508
General Mach Discussion / Re: Mach 3 Z-axis brake control by mach 3 estop
« on: January 09, 2019, 02:40:59 AM »
Config -> Ports&Pins -> Outputs -> Enable1 to Enable6 should work.

1509
General Mach Discussion / Re: New to site - Mach3 homing support needed
« on: January 07, 2019, 04:45:30 AM »
ok that is a normal PP BoB.

can you post some screenshots of your motortunig Screens.
maybe your acceleration is so "soft" that the axis is not able to stop on the Limit Switch ?

1510
General Mach Discussion / Re: New Mach 3 Won't load G code
« on: January 07, 2019, 01:29:09 AM »
have you tryed to load roadrunner example code ?