Advanced Search

Search Results (Searched for: )

  • Hakan
  • Hakan
21 May 2025 21:01 - 21 May 2025 21:01

RTelligent EtherCAT Servo Drive Setup: RS750E

Category: EtherCAT

Yes ethercat OP state is one thing, cia402 enable state is another thing (on top of OP state)
Linuxcnc need to go through every step to enable the drive. Skipping steps or shortcuts are not allowed.
But I have never worried about that, the cia402 component does that automatically.
  • Lcvette
  • Lcvette's Avatar
21 May 2025 20:55
Replied by Lcvette on topic Activate B-axis in Porbe Basic

Activate B-axis in Porbe Basic

Category: QtPyVCP

almost forgot about the job buttons, those are now also dynamically set to display the new options for xyzbc as well as the offsets page ui bits as can be seen in the image below.

just waiting on a tester and need to update the docs once everything tests out and I will push the update out to the apt develop version of PB for install and updating.

 

 
  • Routerworks
  • Routerworks
21 May 2025 20:40
Replied by Routerworks on topic Calling next subroutine messes up offsets

Calling next subroutine messes up offsets

Category: General LinuxCNC Questions

Have to thank you for all your help. I finally got this running very well following my above plan. Freecad is great for many things but not so sure it is the best for programs with subroutines.
Again, thanks for your patience.

Routerworks
  • Lcvette
  • Lcvette's Avatar
21 May 2025 20:37
Replied by Lcvette on topic Activate B-axis in Porbe Basic

Activate B-axis in Porbe Basic

Category: QtPyVCP

ok so i spent the morning and afternoon updating some things with dro display, it is completely modular now in probe basic in the test branch, it includes preconfigured dro displays for the following:

xyz
xyza
xyzab
xyzac
xyabc
user (predefined with xyzabc)

this should allow users to configure however they need to for a multitude of configurations.

it will be activated in the ini section with the addition of the following two lines:

USER_DROS_PATH = user_dro_display/
DRO_DISPLAY = xyzac 

(xyz, xyza, xyzab, xyzac, xyzbc, user) these will be the available options with "user" being editable and stored in the config folder same as usertabs/buttons etc.

it is completed but i need a tester to pull the "dro_display_dynamic_loading" branch and just verify all works on a diferent pc than mine before i send it live as an update.  it will require users to update their config if they want to run anything besides xyz which it will default to if no ini entry is used.

thoughts/help testing?

Thanks,

Chris

 
  • DavidR8
  • DavidR8
21 May 2025 20:21
Replied by DavidR8 on topic Servo as spindle motor configuration

Servo as spindle motor configuration

Category: Basic Configuration

Thank you, appreciate the confirmation.
  • PCW
  • PCW's Avatar
21 May 2025 20:16
Replied by PCW on topic Servo as spindle motor configuration

Servo as spindle motor configuration

Category: Basic Configuration

Yes, step/dir spindle control is possible and supported.
You may have to do some minor hal file editing depending
on which configuration utility you use.

Where it gets more complex is when you have a combined
spindle/C axis.
  • DavidR8
  • DavidR8
21 May 2025 19:55
Servo as spindle motor configuration was created by DavidR8

Servo as spindle motor configuration

Category: Basic Configuration

Hey folks, I'm on the verge of replacing the Masso G3 running my 3 axis mill with LinuxCNC likely paired with a Mesa 7i92S board.
It's a basic machine X, Y, Z axis configuration with DMM DC servos and DYN2 drivers for the axis. Three inductive limit switches, a tool setter and a 3D probe. The one possible wrinkle is that the spindle motor is a Bergerda servo motor currently controlled by step and direction. I think it can also be controlled via 0-10v but I'd prefer to retain the step and direction control.
Is LinuxCNC configurable such that spindle control can remain step and direction?
  • richcolvin
  • richcolvin's Avatar
21 May 2025 19:39
Replied by richcolvin on topic C Axis as Second Spindle

C Axis as Second Spindle

Category: General LinuxCNC Questions

I tried using RoseKins, and it does not work to drive the 2nd spindle either.
  • 1911ut
  • 1911ut
21 May 2025 19:00

Prevent interpreter/planner from executing user remap until...

Category: General LinuxCNC Questions

Thanks that worked perfectly

I was using the following which does not work for my purposes.

    if self.task == 0: # ignore the preview interpreter
        yield INTERP_EXECUTE_FINISH

After removing (if self.task == 0: ), it works.

 
  • Aciera
  • Aciera's Avatar
21 May 2025 17:54 - 21 May 2025 17:57

Prevent interpreter/planner from executing user remap until...

Category: General LinuxCNC Questions

you can use

yield INTERP_EXECUTE_FINISH


NOTE: No 'self.execute(..)' command can be used after this.

 

linuxcnc.org/docs/html/remap/remap.html

 
  • Lcvette
  • Lcvette's Avatar
21 May 2025 17:15
Replied by Lcvette on topic Install Probe Basic

Install Probe Basic

Category: QtPyVCP

correct, this is explained int he instructions to remove the comments or you will receive errors.

 
  • pgf
  • pgf
21 May 2025 16:37
Replied by pgf on topic Flex GUI 1.2.1 Released

Flex GUI 1.2.1 Released

Category: Other User Interfaces

Gave the new axis-like UI a spin this morning. Looks and feels good. I noticed the buttons (e-stop and machine-on, in particular) don't have the 3D "I'm pushed" look when they're pushed released. A small thing, but there's no other visual way to tell the state.

I need to come up to speed on modifying these UIs, so I can make changes and flesh it out. (I know, I know... watch the videos. :-) ) The big missing piece for me right now is a probing/touch-off screen. My current probing setup is pyvcp, so clearly it will need to be redone. But I'll bet you already have fully functional probe screens just waiting to be dropped in.
  • Giovanni
  • Giovanni
21 May 2025 16:36
Replied by Giovanni on topic NativeCam on LinuxCNC 2.9.3

NativeCam on LinuxCNC 2.9.3

Category: NativeCAM

There is a slowly developing version for qt screens:
github.com/LinuxCNC/linuxcnc/commits/qt_ncam/

 

To install NativeCAM from that site, should I download or clone all the linuxcnc package of files?

Regards
Giovanni
  • 1911ut
  • 1911ut
21 May 2025 15:28

Prevent interpreter/planner from executing user remap until...

Category: General LinuxCNC Questions

I have a couple of user defined remaps that do read and insert timestamps  to a SQL database.
The problem is the interpreter  executes these M-codes before the action is actually performed.
Is there a way to tell the interpreter to only execute these when they actually happen?
The remaps are python routines, hoping that a flag can be set.
Tried setting the remap modalgroup to no avail.

I have 6 machines that can make use of this.
Any help appreciated.

 
  • tommylight
  • tommylight's Avatar
21 May 2025 15:23
Replied by tommylight on topic [SOLVED] MesaCT problems with 7i96 pwm spindle

[SOLVED] MesaCT problems with 7i96 pwm spindle

Category: Configuration Tools

Manual, this section:
P05 group Input terminals
Displaying 2491 - 2505 out of 25514 results.
Time to create page: 0.280 seconds
Powered by Kunena Forum