Advanced Search

Search Results (Searched for: )

  • PCW
  • PCW's Avatar
28 Aug 2025 19:19
  • hitchhiker
  • hitchhiker
28 Aug 2025 18:35
Replied by hitchhiker on topic ECMO VMC100 Retrofit with Carousel/Toolchanger

ECMO VMC100 Retrofit with Carousel/Toolchanger

Category: Milling Machines

I get the carousel.comp working with the toolchanger.

It homes and couunts correct... spindle orient before lift up to the gear to dont crash.

All sensor stuff is linked in a remaped m6 ngc and communicate with m64 m65 and m66 between ngc and hal and carousel.comp.

There is a and2 fuction which gives the carousel the enable signal.
This and2 swirches when the hardware sensor gets true that tell that the carousel is in disengaged position. This means the carousel is connected with the gear to maindrive and the tool is released from the spindle sk30.



Next step is to make the stuff working with the main drive.. think its some stuff with mux2 and xor2.

The spindle is synced and can orient. Its a full servo spindle.
  • ts
  • ts
28 Aug 2025 17:54
Replied by ts on topic Serial port asynchronous reading

Serial port asynchronous reading

Category: Advanced Configuration

PCW, thanks for your reply!

Is there any example for this solution with userspace hal component?
  • pinterluca
  • pinterluca
28 Aug 2025 15:27
Replied by pinterluca on topic Use override to modify laser power

Use override to modify laser power

Category: Plasma & Laser

thank you very much. I really wanted to multiply the two signals but I didn't know the commands. now I understand and I will try.
  • michelko
  • michelko
28 Aug 2025 15:24
Replied by michelko on topic Lathe Macros

Lathe Macros

Category: Other User Interfaces

something went wrong with the screen shot
 
  • KlausB
  • KlausB
28 Aug 2025 15:22
Replied by KlausB on topic z_level_compensation

z_level_compensation

Category: Qtvcp

Hello Chris,

After experiencing issues with other software on my computer, I decided to perform a fresh installation using the current DVD version 2.9.4.
Unfortunately, I'm once again encountering problems with Z-Level Compensation.
After creating the “probe_points.txt” file, I can enable “Z-Comp”, but the value in the “Z_Axis Comp” field does not change as expected. Once “Z_COMP” is turned off, it cannot be reactivated without restarting the program.
Do you have any idea what might be causing this?

With this installation, I also tried the touch plate function. It’s visible that after probing the touch plate, the program sets the Z value to the height of the touch plate before executing the retract. This causes the retract value to be added, and the resulting height above the object is correct.
Unfortunately, the program then subtracts the length of the current tool, which in my case is not useful.
Is it possible to disable this behavior?

Thank you very much for your support.
Best regards,
Klaus
  • michelko
  • michelko
28 Aug 2025 15:21
Replied by michelko on topic Lathe Macros

Lathe Macros

Category: Other User Interfaces

Thanks for your reply.
This is the result on the workpiece
 
  • michelko
  • michelko
28 Aug 2025 15:17 - 29 Aug 2025 19:10
Replied by michelko on topic Lathe Macros

Lathe Macros

Category: Other User Interfaces

So this is my setup:
 
  • wusel0464
  • wusel0464
28 Aug 2025 14:20
Replied by wusel0464 on topic Basic probe fails on latch return

Basic probe fails on latch return

Category: Qtvcp

Hello,

For me, he basically does the first (rough measurement) until the step comes back, this is no longer carried out, regardless of whether the workpiece height or tool length and the whole sporadically.
It happens that I finish several parts with the same program and the first or two run through and then it caught or just caught.
If you wait, a timeout comes as described.
At the moment I only come out when I end Linuxcnc, I haven't tried something else yet.
I suspect something swallows in the order.
I have already discharged the trial entrance, but that was also unsuccessful.
I'll try to implement this with the spindle and see what happens.

Until then, greetings to everyone, Frank
  • andypugh
  • andypugh's Avatar
28 Aug 2025 14:16
Replied by andypugh on topic Basic probe fails on latch return

Basic probe fails on latch return

Category: Qtvcp

For other random probe failures, see also github.com/LinuxCNC/linuxcnc/pull/3537
  • andypugh
  • andypugh's Avatar
28 Aug 2025 14:14
Replied by andypugh on topic Basic probe fails on latch return

Basic probe fails on latch return

Category: Qtvcp

[code]Interestingly, G38 moves is not dependent of spindle-at-speed signal, do not know if this is intentional or a bug in linuxcnc code.
[/code]

That does seem inconsistent, but at the same time you almost always _don't_ want the spindle to spin with the probe loaded. Especially if it's a wired probe. 
 
  • andypugh
  • andypugh's Avatar
28 Aug 2025 14:08
Replied by andypugh on topic Use override to modify laser power

Use override to modify laser power

Category: Plasma & Laser

I'm installing a 20w laser on my CNC and I control the power of laser using the spindle pwm. The software LightBurn use M67 to control the laser power. 

Which of these do you want to use? They aren't really compatible. 

You could use the spindle-override controls indirectly, using a HAL "scale" component to multiply the motion.analog-out.NN pin by halui.spindle.N.override.value
linuxcnc.org/docs/stable/html/man/man9/scale.9.html
linuxcnc.org/docs/stable/html/man/man1/h...l#Spindle%20Override
  • esmurf
  • esmurf
28 Aug 2025 14:05 - 28 Aug 2025 14:07
Replied by esmurf on topic Stepperonline A6-1000EC driver

Stepperonline A6-1000EC driver

Category: EtherCAT

The xml file from stepperonline is for something else.
You need a xml file that maps the linuxcnc internal "pins" to the drives PDOs.
There are numerous examples if you search for "A6 ethercat-conf.xml" in this forum. You can start with one of these and then adapt to your needs.

check with command "ethercat slaves". Errors show up in syslog.

You can set SDOs permanently with "ethercat download".
There can be a maximum of 10 PDOs in the xml file.
  • andypugh
  • andypugh's Avatar
28 Aug 2025 14:00
Replied by andypugh on topic Round system parameter to tenths?

Round system parameter to tenths?

Category: G&M Codes

You may be seeing a problem caused by the G-code preview. That runs through the code to draw the lines, but won't update values based on probe results etc (as it doesn't _move_ anything).

The trick here is probably
O100 while [#<_task> EQ 1.0 AND #<_deltaabs> GT 0.007]

Which will end the loop early in preview generation.

linuxcnc.org/docs/stable/html/gcode/over...ub:system-parameters
  • PCW
  • PCW's Avatar
28 Aug 2025 13:52
Replied by PCW on topic Serial port asynchronous reading

Serial port asynchronous reading

Category: Advanced Configuration

Since it's not realtime, you should be able to make a simple (python?) userspace
hal component using the kernels serial driver.
Displaying 1006 - 1020 out of 23342 results.
Time to create page: 1.774 seconds
Powered by Kunena Forum