Search found 2676 matches
- Sat Nov 30, 2024 5:39 pm
- Forum: C Programs
- Topic: KOGNA RS485 SLAVE ID
- Replies: 2
- Views: 64
Re: KOGNA RS485 SLAVE ID
Hi kizilkaya, Attached is an example that should read the 8 Inputs to Kogna Virtual Bits 48-55 and write Virtual Bits 56-63 to the outputs Using Kogna's RS485 Port. It is untested. Your example doesn't help much because the library functions weren't provided or documented. This table defines the Mod...
- Thu Nov 28, 2024 10:38 pm
- Forum: Configuration Issues
- Topic: Kflop driver for Mac M series
- Replies: 1
- Views: 24
- Tue Nov 26, 2024 11:19 pm
- Forum: C Programs
- Topic: Using a Message Input Box
- Replies: 4
- Views: 93
Re: Using a Message Input Box
Hi Jack, Sorry for the problem. GCodeInterpreter.dll needs to be updated also. Copy to the \KMotion\Release folder. Make sure you are running Version 5.3.6. GCodeInterpreter.dll I wasn't sure what to do with the SetValue.cpp. You don't need this unless you need to re-compile KMotionCNC.exe. If so, i...
- Mon Nov 25, 2024 3:37 pm
- Forum: KMotionCNC, G Code Files, Offsets, Post Process
- Topic: Geometric correction
- Replies: 1
- Views: 64
Re: Geometric correction
The values in the table are:
Row Column X Y Z
so for example row=0 column=1 would be the grid position one column to the right in X. So would be:
0,1,1,0,0
not
0,1,0,1,0
HTH
Row Column X Y Z
so for example row=0 column=1 would be the grid position one column to the right in X. So would be:
0,1,1,0,0
not
0,1,0,1,0
HTH
- Sat Nov 23, 2024 6:57 pm
- Forum: C Programs
- Topic: Using a Message Input Box
- Replies: 4
- Views: 93
Re: Using a Message Input Box
Hi Jack, Here is a patch for Version 5.3.6 to allow the drop down values to be specified separated by ';'. Copy to the \KMotion\Release folder. KMotionCNC.exe Modifed source code: SetValue.cpp Example #include "KMotionDef.h" #define TMP 10 // which spare persist to use to transfer data #include "Kfl...
- Sat Nov 23, 2024 1:18 am
- Forum: C Programs
- Topic: Zeroing a Rotary Axis
- Replies: 3
- Views: 153
Re: Zeroing a Rotary Axis
Hi Jack,
No there isn't. Why would you want to get only one when you can get all for the same price.I was wondering is there a simple way to just get the Z axis position vs getting all of the axis?
- Fri Nov 22, 2024 6:12 pm
- Forum: User PC Applications and Libraries .Net
- Topic: V5.3.6: Error in .Net : KM_IO.cs
- Replies: 1
- Views: 51
Re: V5.3.6: Error in .Net : KM_IO.cs
Thank you Frederic
- Fri Nov 22, 2024 12:04 am
- Forum: Configuration Issues
- Topic: Limit switch issue
- Replies: 4
- Views: 126
Re: Limit switch issue
The signal wire of the limit switch is directly connected to KFLop IO34 and IO35. That doesn't explain how it is wired. The tricky thing is if I keep the two optical limit switches connected to IO34 and IO35 and set LimitSwitchOptions to 0x112 //means just use the positive one. It works perfectly. ...
- Thu Nov 21, 2024 7:04 pm
- Forum: Configuration Issues
- Topic: Limit switch issue
- Replies: 4
- Views: 126
Re: Limit switch issue
You possibly have noise on the wiring. How is it wired? Those pins need to be driven high and low.
Since you have a KStep it would be better to use the 24V Opto-isolated inputs available on KStep.
Since you have a KStep it would be better to use the 24V Opto-isolated inputs available on KStep.
- Thu Nov 21, 2024 6:54 pm
- Forum: C Programs
- Topic: Status flag Home
- Replies: 5
- Views: 193
Re: Status flag Home
Is it possible for the axes to move during the Homing procedure if the axes are not enabled? no How to run multiple programs in multiple threads using one button in KMotionCNC ? That shouldn't normally be necessary. But you could have the first Program push another button (possibly hidden) that exe...