Hello Guest it is April 25, 2026, 06:57:23 PM

Recent Posts

Pages: 1 2 3 4 5 6 7 8 9 10
1
Promote and discuss your product / Re: New product released from XHC Alex
« Last post by servomac on April 25, 2026, 01:44:50 PM »
hi
have a WHB04B-4 and it has never worked, none of your drivers seem to work, I advise anyone to stay well clear of this product.
servomac
2
Brains Development / Re: Basic pendant brains
« Last post by servomac on April 24, 2026, 10:40:20 AM »
hi
have you ever considered going down the modbus/arduino route. I have recently developed a control station setup using this and it seems to work fine. currently testing it on machine now. If your interested i could send you some details.
regards
servomac
3
Probes and Tool Setters / Re: Rapidchange ATC
« Last post by edcross on April 23, 2026, 07:12:03 AM »
Any progress ??
4
Mach Screens / Re: simple numeric keyboard for input in DRO
« Last post by TPS on April 22, 2026, 06:58:57 AM »
hello TC,
you can have a look to the screenset i attached.
you can use MachScreen (https://kd-dietz.com/index_eng.html)
from Klaus to modify your screenset.

the basic idea i used in my screenset is to draw all key's you need in the
background picture, the place a transparent button over each key.
the button itselv contains a small basic script. i use a userlabel to add or delete
the individual key to a string.

for example the code for button G:
Code: [Select]
Sub Main()
SetUserLabel(255,GetUserLabel(255) + "G")
End Sub
does nothing else than adding a "G" at the end of the string and this is done in
each button for the specific letter.

the ENTER Key will have this code:
Code: [Select]
Sub Main()
  Code GetUserLabel(255)
  SetUserLabel(255,"")
End Sub
does nothing else than excecute the Code witch is in Userlabel(255) and clears Userlabel

the backspace button only cut's the last character of the string:
Code: [Select]
Sub Main()
SetUserLabel(255, Left(GetUserLabel(255),Len(GetUserLabel(255))-1))
End Sub
and so on.

there is no code check at all because Mach3 will verjfy it.

hope i could point you in the direction of my idea of this permanent "keyboard".

 
5
Mach Screens / Re: simple numeric keyboard for input in DRO
« Last post by Thom on April 22, 2026, 04:54:33 AM »
I will give this a try, thank you.
Maybe you could give me an idea of how to place a numeric keyboard on the screen permanently for MDI.
I have a screen with number buttons, that's it so far.
Would you know of anyone who does this for monetary compensation?
After two years of trying myself, it's time to try another way.
Thank you again for your unselfish help and time.
TC
 
6
Mach Screens / Re: simple numeric keyboard for input in DRO
« Last post by TPS on April 22, 2026, 01:15:23 AM »
Sorry Thom,

you are right, version of reply #3 is for a MDI input.
i have made so many version's of it so i lost the "track" here.

but is is like a popup window.

in the attached screenset i made a MDI input via touch screen (page 50) years ago. 

7
Mach Screens / Re: simple numeric keyboard for input in DRO
« Last post by Thom on April 21, 2026, 02:22:39 PM »
Sorry but I thought this was modified for an MDI input keyboard on Reply #3. Not being able to write scripts/code makes some functions difficult. Thank you for the reply.
8
Mach4 General Discussion / Re: Mach 4 scale issues
« Last post by Bill_O on April 21, 2026, 07:26:42 AM »
You need to incorporate the screw pitch.
I also suggest lowering the microsteps.
That is very high
9
Mach4 General Discussion / Re: page up, page down for z axis not working
« Last post by Bill_O on April 21, 2026, 07:24:01 AM »
If it is a number keypad make sure NumLock is off.
10
Since it works when you toggle “Step Low Active”, check:

Ports & Pins → Spindle Setup: make sure PWM is enabled and min PWM isn’t set too high
Try lowering Minimum PWM (e.g. 0 or very low)
Verify Output # for spindle is mapped correctly (Ports & Pins → Output Signals)
Check pulley settings (Config → Spindle Pulleys), max speed not set too low
Also confirm your S command in MDI (e.g. M3 S1000) actually outputs a valid speed

The “pwm bumped into minimum” error often happens when Mach3 can’t output a valid PWM within your defined limits.
Pages: 1 2 3 4 5 6 7 8 9 10