Advanced Search

Search Results (Searched for: )

  • Steffen
  • Steffen
17 Nov 2024 14:32 - 17 Nov 2024 14:32
Replied by Steffen on topic Download Lube component

Download Lube component

Category: Deutsch

Hi,
Ich habe die selben Probleme wie sonst im Forum zu lesen, die Lube.py kann nicht gefunden werden.

Ich hab den Pfad neu angeben, Lese/Schreibrechte gesetzt und es ausführbar gemacht. Dazu alles mögliche in der Datei mit Python/2/3 versucht.

Eigentlich brauche ich nur was, wo mir alle 2 Minuten für ein paar Sekunden den Ausgang öffnet, ohne Überwachung.

Kann mir da jemand helfen?

Danke
Grüße
Steffen
  • Aciera
  • Aciera's Avatar
17 Nov 2024 14:16
Replied by Aciera on topic Spindle delay

Spindle delay

Category: Basic Configuration

Your signal names don't match up.
replace
net spindle-on => timedelay.0.in

with
net spindle-enable => timedelay.0.in

the editor is buggy and messes up the formating when you edit things. Use the 'Source' button in the top left of the editor to see the tags and move them around.
  • LabOuest
  • LabOuest
17 Nov 2024 14:06 - 17 Nov 2024 14:37
Replied by LabOuest on topic Remora - Does Analog input syntax exist?

Remora - Does Analog input syntax exist?

Category: Computers and Hardware

Yeah, I was running a youtube video in the background but still, you're right, it's quite high.
I thought that this could be a possible cause so I've already made all of the recommended changes to the bios.
Thank you for the heads up on the core isolation, I must have misunderstood Talla83's video.
I will try to better understand kernel settings, unfortunately, there's isn't a lot of information about my dell optiplex 3020m.
Pinging the EC500 gives a latency between 0.130 and 0.25ms.

I'm trying to narrow down the possible causes, do you experience about the same ethernet latency as I do ?

EDIT: Using Halshow I can get so more debug information:
  • remora.read.time is between 5 to 700 000
  • remora.update-freq.time is between 4-700
  • remora.write.time is 5 to 800 000
  • tommylight
  • tommylight's Avatar
17 Nov 2024 13:49
Replied by tommylight on topic 10.5 x 25 cnc plasma table retrofit

10.5 x 25 cnc plasma table retrofit

Category: Computers and Hardware

Case is very nice, PC should be good (i have a similar looking one, works perfectly for Mesa), 5 phase steppers are nice as they vibrate less but also have less torque and yours seem to be the 5000 step per revolution ones!!! Damn, those are nice for some precise stuff. Vexta should be easy to find info on them, although lately google is failing miserably to find anything.
Power supply should do just fine, just do not expect record braking speed.
  • f3nix
  • f3nix
17 Nov 2024 13:46 - 17 Nov 2024 13:49
Replied by f3nix on topic Spindle delay

Spindle delay

Category: Basic Configuration

Thanks @Aciera
I've tried that but the machine does not move after that. Trying to run some gcode the spindle starts but nothing else happens.

Cheers,
Mateusz

P.S. Are the code blocks broken in the forum?
  • Aciera
  • Aciera's Avatar
17 Nov 2024 13:35
Replied by Aciera on topic Spindle delay

Spindle delay

Category: Basic Configuration

remove/comment this line in your spindle section:
net spindle-at-speed           <=  spindle.0.at-speed
  • f3nix
  • f3nix
17 Nov 2024 13:26 - 17 Nov 2024 21:20
Spindle delay was created by f3nix

Spindle delay

Category: Basic Configuration

Hi guys.
I'm just starting so please be gentle ;)

I would like to add a delay for spindle to come up to speed. I'm using version 2.9.3

I have tried adding these lines:

loadrt timedelay count=1
addf timedelay.0 servo-thread
setp timedelay.0.on-delay 5
net spindle-on => timedelay.0.in
net spindle-timer <= timedelay.0.out
net spindle-timer => spindle.0.at-speed

But I get error with this text:

254: Pin 'spindle.0.at-speed' was already linked to signal 'spindle-at-speed'


The whole spindle section looks like this:

#*******************
#  SPINDLE S
#*******************

setp   pid.s.Pgain     [SPINDLE_9]P
setp   pid.s.Igain     [SPINDLE_9]I
setp   pid.s.Dgain     [SPINDLE_9]D
setp   pid.s.bias      [SPINDLE_9]BIAS
setp   pid.s.FF0       [SPINDLE_9]FF0
setp   pid.s.FF1       [SPINDLE_9]FF1
setp   pid.s.FF2       [SPINDLE_9]FF2
setp   pid.s.deadband  [SPINDLE_9]DEADBAND
setp   pid.s.maxoutput [SPINDLE_9]MAX_OUTPUT
setp   pid.s.error-previous-target true

net spindle-index-enable  <=> pid.s.index-enable
net spindle-enable        =>  pid.s.enable
net spindle-vel-cmd-rpm-abs     => pid.s.command
net spindle-vel-fb-rpm-abs      => pid.s.feedback
net spindle-output        <=  pid.s.output

# ---PWM Generator signals/setup---

setp   hm2_5i25.0.pwmgen.00.output-type 1
setp   hm2_5i25.0.pwmgen.00.scale  [SPINDLE_9]OUTPUT_SCALE
setp    hm2_5i25.0.gpio.000.invert_output true


net spindle-vel-cmd-rpm     => hm2_5i25.0.pwmgen.00.value
net spindle-enable      => hm2_5i25.0.pwmgen.00.enable

# ---setup spindle control signals---

net spindle-vel-cmd-rps        <=  spindle.0.speed-out-rps
net spindle-vel-cmd-rps-abs    <=  spindle.0.speed-out-rps-abs
net spindle-vel-cmd-rpm        <=  spindle.0.speed-out
net spindle-vel-cmd-rpm-abs    <=  spindle.0.speed-out-abs
net spindle-enable             <=  spindle.0.on
net spindle-cw                 <=  spindle.0.forward
net spindle-ccw                <=  spindle.0.reverse
net spindle-brake              <=  spindle.0.brake
net spindle-revs               =>  spindle.0.revs
net spindle-at-speed           <=  spindle.0.at-speed
net spindle-vel-fb-rps         =>  spindle.0.speed-in
net spindle-index-enable      <=>  spindle.0.index-enable

# ---Setup spindle at speed signals---

#sets spindle-at-speed true

loadrt timedelay count=1
addf timedelay.0 servo-thread
setp timedelay.0.on-delay 5
net spindle-on => timedelay.0.in
net spindle-timer <= timedelay.0.out
net spindle-timer => spindle.0.at-speed

Could anyone push me in the right direction?
Thanks.

Cheers,
Mateusz
  • royka
  • royka
17 Nov 2024 12:46
Replied by royka on topic Remora - Does Analog input syntax exist?

Remora - Does Analog input syntax exist?

Category: Computers and Hardware

The latency is already high after such a short amount of time without running glxgears, so the latency might be the cause if it goes higher during operation. Isolating all cores makes no sense, you should always have one available for the system to run its tasks on. It won't hurt to try to find better settings in the bios and kernel parameters.
Network latency can also be a cause, pinning the Ethernet irq to the isolated core can help.
  • freemoore
  • freemoore
17 Nov 2024 12:27
Replied by freemoore on topic NativeCam on LinuxCNC 2.9.3

NativeCam on LinuxCNC 2.9.3

Category: NativeCAM

Hi Giovanni and others,

Didn't think it would take me an entire month to find time to try this, but that's what's happened. Giovanni, many thanks to you for your clear and thorough instructions, I have nativecam working embedded in a tab.

Linuxcnc version is 2.9.3.

Followed Giovanni's guide but had some issues/found solutions as follows:

I wanted to use Giovanni's latest edit of ncam.py as downloaded from p2 of this topic so extracted that to the Desktop and did:

> Desktop sudo cp ncam.py /usr/share/linuxcnc/gladevcp/NativeCAM
> Desktop sudo cp ncam.py /usr/lib/python3/dist-packages/

- I guess one of those is likely unnecessary but I'm not sure which, leaving them both there for now.

On my system there were already some lines pointing to gladevcp instead of aux_gladevcp, so where Giovanni's instructions say 'aux_gladevcp' I substituted just 'gladevcp'

I couldn't get the system to append the path: /usr/lib/python3/dist-packages/gladevcp to the pythonpath but it already contained: /usr/lib/python3/dist-packages, so instruction number 5 becomes this:

Move to the dist-packages directory:
> cd /usr/lib/python3/dist-packages

Create symbolic links to the files in the NativeCAM folder:
> sudo ln /usr/share/linuxcnc/gladevcp/NativeCAM/ncam.py -s
> sudo ln /usr/share/linuxcnc/gladevcp/NativeCAM/ncam.glade -s
> sudo ln /usr/share/linuxcnc/gladevcp/NativeCAM/pref_edit.py -s

(A few times I saw an error like 'ModuleNotFound: pref_edit.py' so added a symlink to that)

and a couple of other errors mostly due to me reading through a file too fast and putting a couple of things in the wrong place.

for no. 8: again, gladevcp instead of aux_gladevcp

I did not use instruction no. 9 as I don't use ncam as standalone.

Trying out first cuts using embedded nativecam last night, works as expected so far. No crashes as yet. Thanks also to BogdanTheGeek for the initial update!
  • JT
  • JT's Avatar
17 Nov 2024 12:14
Replied by JT on topic Flex GUI Import a Python Module

Flex GUI Import a Python Module

Category: Other User Interfaces

I am, which IRC are you referring to? I'll join up!

edit: oops, found it! on the community page of linuxcnc
 

There is also the #flex-deb channel on Libera.Chat for bug reports or feature requests.

JT
  • BoxCNC
  • BoxCNC
17 Nov 2024 11:52
Replied by BoxCNC on topic BOXFORD 125 TLC Tool Changer Setup

BOXFORD 125 TLC Tool Changer Setup

Category: General LinuxCNC Questions

Hi. Can work with LinuxCNC 2.9.3. Please help if you can.
  • HeatWobin5on
  • HeatWobin5on
  • Tim Bee
  • Tim Bee
17 Nov 2024 10:46
Replied by Tim Bee on topic probe basic tool direction

probe basic tool direction

Category: QtPyVCP

@Lcvette

It's work! Thank you ^_^
Displaying 17011 - 17025 out of 24608 results.
Time to create page: 0.367 seconds
Powered by Kunena Forum