Hello Guest it is April 25, 2024, 02:51:33 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 - Kenneth

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 »
101
VB and the development of wizards / IsMoving
« on: January 21, 2014, 08:57:35 AM »
not sure i understand IsMoving. doesn't that mean when
ANY axis is moving ? i'm trying to get a ticker going and
the below only does the Else, not the If :)  hope that explains it.
i want the ticker to say something while the machine is motionless
and not say anything while any axis is moving.
Thanks


If IsMoving() Then
SetTicker(1 , "  Moving  ")
Sleep 2000
Else
SetTicker(1 , "       Raven Research")
Sleep 2000
End If

102
for those who would like this macro...

'Axis Motion LED Control**********************
' X axis LED = 1120
' Y axis LED = 1121
' Z axis LED = 1122


'X axis LED Control***************************
If GetOEMDro(806) > 0 And  GetUserLED(1120) = 0 Then
   SetUserLED(1120,1)
End If

If GetOEMDro(806) = 0 And GetUserLEd(1120) = 1 Then
   SetUserLed(1120,0)
End If

'Y axis LED Control***************************

If GetOEMDro(807) > 0 And  GetUserLED(1121) = 0 Then
   SetUserLED(1121,1)
End If

If GetOEMDro(807) = 0 And GetUserLEd(1121) = 1 Then
   SetUserLed(1121,0)
End If

'Z axis LED Control*****************************
If GetOEMDro(808) > 0 And  GetUserLED(1122) = 0 Then
   SetUserLED(1122,1)
End If

If GetOEMDro(808) = 0 And GetUserLEd(1122) = 1 Then
   SetUserLed(1122,0)
End If

'End of File************************************

End

103
got macropump to work. it hesitates starting and stopping.
but i guess that would be my computer slowing the macropump.
THANKS Alex !

104
thank Alex,
using the macropump, the waits a couple of seconds
before lighting. i know the pump runs fast. are the leds
waiting for the pump to cycle ? and a while back, they helped
me get it working as a separate macro.

105
i noticed if i "step" it in the editor, it skips SetUserLed and just
goes to Get....

106
think i misunderstood MacroPump. i'm not using file macropump.
this is a macro. does that matter ?

107
yes sir, i do restart mach3 after clicking RMP.
what's "ChargePump On In Estop" ?
does that start macropump when estop is pressed ?
Thanks

kenneth

108
and i have Run Macro Pump clicked in Config/gen set
there's no other setting some where. is there ?

running ver 3.043.062

109
getting back into mach3 and getting a controller that will work with it.
i'm having trouble getting "all" the macros to work. some do, some don't
beloew is one that doesn't. i figured if i (ya'll) can fix one, the others will follow :)

not me script(thanks TP)

'Axis Motion LED Control**********************
' X axis LED = 1120
' Y axis LED = 1121
' Z axis LED = 1122


'X axis LED Control***************************
If GetOEMDro(800) > 0 And GetUserLED(1120) = 0 Then
   SetUserLED(1120,0)
End If

If GetOEMDro(800) = 0 And GetUserLEd(1120) = 1 Then
   SetUserLed(1120,0)
End If

' Y axis LED Control***************************

If GetOEMDro(801) > 0 And  GetUserLED(1121) = 0 Then
   SetUserLED(1121,1)
End If

If GetOEMDro(801) = 0 And GetUserLEd(1121) = 1 Then
   SetUserLed(1121,0)
End If

'Z axis LED Control*****************************
If GetOEMDro(802) > 0 And  GetUserLED(1122) = 0 Then
   SetUserLED(1122,1)
End If

If GetOEMDro(802) = 0 And GetUserLEd(1122) = 1 Then
   SetUserLed(1122,0)
End If

'End of File***********************************

End

110
Brains Development / Pause Timer DRO
« on: November 27, 2013, 07:20:31 AM »
hi, is there a way to pause the run time DRO(814)? so if I pause the g-code, the clock
pauses as well. so I can get a better time length on a file.

also, I have movement LEDs for xyz. but they are slow to respond.
where do I save scripts so mach3 see em?
Thanks

kenneth

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 »