Search found 2559 matches

by TomKerekes
Mon May 13, 2024 12:28 am
Forum: Configuration Issues
Topic: G0 Rapid feeds not following KMotion settings
Replies: 5
Views: 33

Re: G0 Rapid feeds not following KMotion settings

Hi Eero,

Regarding no holding torque: All the should be required for there to be holding torque is power and enable. Are the 3 KStep LEDs on?

In case something strange has been Flashed to KFLOP it can be reset to its Virgin state by re-Flashing New Version.
by TomKerekes
Mon May 13, 2024 12:23 am
Forum: Hardware Interface Issues
Topic: Encoder AB Z
Replies: 2
Views: 8

Re: Encoder AB Z

Hi Techy,

Yes Index pulses are handled in software so any input can be used. See also here.
by TomKerekes
Sat May 11, 2024 12:00 am
Forum: Configuration Issues
Topic: G0 Rapid feeds not following KMotion settings
Replies: 5
Views: 33

Re: G0 Rapid feeds not following KMotion settings

Hi Eero, I can't duplicate the problem with those settings. If I code G0 X100 M30 I see a feedrate of 10.3 inches/minute which seems correct. Also if I double the KFLOP Velocity to 28000 steps/sec the feedrate doubles to 20.6 inches/minute. What are you doing and seeing? One issue is the Cnts/inch o...
by TomKerekes
Fri May 10, 2024 6:48 pm
Forum: Configuration Issues
Topic: G0 Rapid feeds not following KMotion settings
Replies: 5
Views: 33

Re: G0 Rapid feeds not following KMotion settings

Hi Eero, I can't think of why that would be. What Version are you running? Please post your Initialization file and your Trajectory planner settings. Also the GCode that shows the problem. Are you executing the C Program? You might upload the settings from KFLOP to verify the settings are actually b...
by TomKerekes
Wed May 08, 2024 7:50 pm
Forum: User PC Applications and Libraries .Net
Topic: KMotion_dotNet.dll not found
Replies: 4
Views: 54

Re: KMotion_dotNet.dll not found

Hi Tray,

The .NET documentation is on-line here.
by TomKerekes
Tue May 07, 2024 5:23 pm
Forum: User PC Applications and Libraries .Net
Topic: KMotion_dotNet.dll not found
Replies: 4
Views: 54

Re: KMotion_dotNet.dll not found

Hi Tray,

Maybe the required version of .NET is missing on the PC? Does the example SimpleFormsCS run?

You might read this Thread.
by TomKerekes
Tue May 07, 2024 5:19 pm
Forum: Noise, Grounding, Shielding Issues
Topic: Isolating SnapAmp from KFLOP to remove motor noise
Replies: 6
Views: 99

Re: Isolating SnapAmp from KFLOP to remove motor noise

Hi Griffin, I was curious what you thought about the impact of placing 30KHz band-reject filter on the ground connection between the SnapAmp and KFLOP, such that switching transients don't conduct into the logic ground. Do you think this would pose any advantages? Although the switching occurs at 30...
by TomKerekes
Mon May 06, 2024 5:18 pm
Forum: New Feature Request
Topic: Log Bit Status
Replies: 1
Views: 20

Re: Log Bit Status

Hi kilzilkaya, It would be nice if you explained what you are trying to accomplish. If you need these bits in another Windows App it would be better to have the app read them directly. You might look at or use the function: bool CScreen::ReadBitCached(int bit) You can get the Virtual bits individual...
by TomKerekes
Sat May 04, 2024 5:44 pm
Forum: Configuration Issues
Topic: Problem with KMotion Configuration screen
Replies: 2
Views: 32

Re: Problem with KMotion Configuration screen

The C Program Parameters must be contiguous without embedded comment lines to be imported correctly.

Try importing example \KStep\InitKStep6AxisSpindleAxis6.c to see if it imports correctly.
by TomKerekes
Fri May 03, 2024 7:41 pm
Forum: KMotionCNC, G Code Files, Offsets, Post Process
Topic: Macro programs in KMotionCNC
Replies: 1
Views: 45

Re: Macro programs in KMotionCNC

Hi Alexanders, No 'IF' and 'WHILE' aren't supported. But the similar functionality can be achieved with looping subroutine calls. See the example SubroutineWithConditionals.ngc shown below: G20 #100 = 5 (examples of logical operations) (result is 1 if condition is true) (result is 0 if condition is ...