Hello Guest it is April 26, 2024, 08:37:57 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 - seanwmurph

Pages: 1
1
I'd sure appreciate an email of the pdfs!

2
Cool! I'd love to hear how that goes for you.

3
Not real great news... but thanks guys, I appreciate the help.

Any chance somebody posted documentation of there board from 5-7 years ago? Haha.. Custom electronics aren't really my strongest topic but that should be a relatively simple logic board I suppose and it's a good excuse to learn some new stuff!

4
So an update: I've made more progress in that instead of trying to use gcode to move the axes I'm calling oem code jog buttons. (Wish I'd thought of that first..) But it's behaving oddly and I was hoping someone might be able to help. The code I'm using for one axis:

' First home Z

While Not IsActive(INPUT4)    ' proximity sensor off?
   DoOEMButton(311)       ' jog toward proximity sensor
Wend
While Not IsActive(INPUT3)    ' look at zero pulse and jog reverse direction toward it
   DoOEMButton(312)
Wend
DoButton(24)                       ' Set home


The odd behavior is that it seems to work if I hit run from the VB script editor but pressing the refhome button doesn't seem to do anything at all. For me, it's quite the mystery.. Please help!

Also, I imagine I'll have to add more to the code to change jog rate as it goes toward zero pulse of the encoder, but i'm not that far yet!

5
Also, the code shown above causes mach3 to crash. consistently. After the the z begins moving up, it throws 3336 error and quits. So I tried doubling the incremental move feedrate and sure enough, it crashed roughly twice as far as it did with half feed. So i'm thinking the scripts have like a timeout parameter or something, not sure though.

6
Hey Everyone! Yes this is my first post but I like to think I've searched the forum high and low for an answer with no luck. If I'm mistaken, my apologies.

So I have inductive proximity sensors on my machine along with very high count digital encoders with a zero pulse. What I'd like to do for homing is have the machine move until it triggers the proximity sensor and then reverses direction until the next zero pulse is triggered and then call that position home. I've been working the VB script editor with a few ideas I had to do so but I'm not real confident in them. I'm not too familiar with computer programming, but i'm also not completely useless at it.

What I would like to work (paraphrased pseudo code):

' Move Z incrementally up until proximity sensor is hit
While (proximity switch off)
     code("G91 G01 Z10. F20")
Wend

While (zero pulse input not active)
     code("G91 G01 Z-.05 F.01")
Wend
DoButton(24) 'define as home position


My biggest concern is that in the first while statement it won't continue checking to see the if switch is hit or not. Has anybody tried this? Next weekend I should be able to try it but it'd be nice to know a little more before just hoping it doesn't crash.

The other thing I considered was making the incremental axis move very small so it keeps outputting a new move while the switch is not hit, but that seems to very reliably crash Mach3....

I know the ActivateSignal() command but as far as i can tell that doesn't work for motors.. Does anybody know of a method to move a motor through a script command and not gcode? Or does anybody know a better approach to this? I am certainly willing to accept the possibility i'm overcomplicating this.

Any help is much appreciated! Thanks in advance!

Pages: 1