Hello Guest it is March 18, 2024, 11:07:51 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

551
VB and the development of wizards / Re: OEMtrig
« on: February 22, 2021, 02:41:46 PM »
have you tryed to disable achtive Low?

552
VB and the development of wizards / Re: OEMtrig
« on: February 22, 2021, 02:30:05 PM »
have you tryed to disable achtive Low?

553
General Mach Discussion / Re: Mach3, Opt Laser 5W and Aspire
« on: February 22, 2021, 10:40:43 AM »
according to this Manual

https://optlasersgrav.com/index.php?controller=attachment&id_attachment=56

i am pretty sure you have to connect an other Output to Enable #1 Input (Pin3),
and this Output is the witch Needs to be switched with M10/M11

554
VB and the development of wizards / Re: OEMtrig
« on: February 22, 2021, 10:17:23 AM »
in the sample code oemtrig2 is for stopping not oemtrig3

you can Setup only one triggerfile

pls post your m333.m1s and m334.m1s and a screenshot of your System hotkey Setup Screen.

555
General Mach Discussion / Re: Mach3, Opt Laser 5W and Aspire
« on: February 22, 2021, 09:13:01 AM »
the 0-10V part is clear, but imho there should be an Output witch is going to the enable Input from laser Interface.

556
General Mach Discussion / Re: Mach3, Opt Laser 5W and Aspire
« on: February 22, 2021, 09:00:00 AM »
and where is the Output witch is switched with M10/M11 wired to?

557
General Mach Discussion / Re: Mach3, Opt Laser 5W and Aspire
« on: February 22, 2021, 07:47:57 AM »
how (Hardware) do you Switch your laser On/off?

scematics would also help.

 

558
VB and the development of wizards / Re: OEMtrig
« on: February 21, 2021, 11:47:52 AM »
low or high active depends on how your Inputs are connected.

for are quick try you can assign port/pin pin to spare Input and check on diagnostic page
via led's for right Level.

559
VB and the development of wizards / Re: OEMtrig
« on: February 21, 2021, 09:41:15 AM »
try to use this, only to see witch Trigger Comes up:

Code: [Select]

( For start function )
If IsActive (OEMTRIG1) Then
  MSGBox "Trigger 1 hit!"
  DoOEMButton(1000)
  activatesignal(output2)
  deactivatesignal(output3)
  deactivatesignal(output4)
  deactivatesignal(output5)
  deactivatesignal(output6)
End If

( For stop function )
If IsActive (OEMTRIG2) Then
  MSGBox "Trigger 2 hit!"
  DoOEMButton(1003)
  activatesignal(output3)
  deactivatesignal(output2)
  deactivatesignal(output4)
  deactivatesignal(output5)
  deactivatesignal(output6)
End If




560
VB and the development of wizards / Re: OEMtrig
« on: February 21, 2021, 06:11:23 AM »
yes thats it.