Advanced Search

Search Results (Searched for: )

  • meister
  • meister
09 Oct 2025 07:03
Replied by meister on topic Tipps für aktuelle LinuxCNC Hardware gesucht

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

ja, aber es ist von vorteil dafür eine dedizierte verbindung ohne switch/hub dafür zu nutzen, um netzwerk kollisionen zu vermeiden.

versuch lieber erstmal rauszufinden wie die belegung an deinem 25pol stecker ist und ob das idealerweise mit der default config der mesakarte zusammen passt.
  • Gartenzwerg
  • Gartenzwerg
09 Oct 2025 06:52
Replied by Gartenzwerg on topic Tipps für aktuelle LinuxCNC Hardware gesucht

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

Soweit war mir das schon klar :-D

Ich les mich da mal in ein paar Config Beispiele ein.

Ist das eine normale TCP/IP Verbindung, also bekommen beide Seiten eine IP-Adresse, die ich dann in der Linuxcnc Config angeben muss, damit der weiß wo er seine Steuerbefehle hinschickt?
  • WKS-3D
  • WKS-3D's Avatar
09 Oct 2025 06:38

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

Zur Fräse hin ist mir das klar, aber zwischen Raspi und Mesa Karte ist noch ein Interface, das konfiguriert werden möchte (wenn ich das richtig verstanden habe?)

Aber ich schätze wenn man die Teile vor sich hat, wirds klarer :-)


Ja, dieses Interface nennt man "Netzwerkkabel/Patchkabel" ;)

Der Raspi wird über RJ45 mit der Mesakarte verbunden :)


Gruß
Olli
  • Gartenzwerg
  • Gartenzwerg
09 Oct 2025 06:29
Replied by Gartenzwerg on topic Tipps für aktuelle LinuxCNC Hardware gesucht

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

Zur Fräse hin ist mir das klar, aber zwischen Raspi und Mesa Karte ist noch ein Interface, das konfiguriert werden möchte (wenn ich das richtig verstanden habe?)

Aber ich schätze wenn man die Teile vor sich hat, wirds klarer :-)
  • meister
  • meister
09 Oct 2025 06:25
Replied by meister on topic Tipps für aktuelle LinuxCNC Hardware gesucht

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

Die karten die er verlinkt hat, da kommen auf die pfostenstecker auch nur 25pol d-sub stecker drauf, also selber anschluss wie beim parport-hat und sollte somit auch ein 1:1 ersatz sein
  • Gartenzwerg
  • Gartenzwerg
09 Oct 2025 06:16 - 09 Oct 2025 06:27
Replied by Gartenzwerg on topic Tipps für aktuelle LinuxCNC Hardware gesucht

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

So, jetzt habt ihr mich soweit. 

Ich denke ich probiere beides.
Den Parallel Hat weil ich dann einen 1:1 Ersatz hätte, und vor allem im Fehlerfall eigentlich nur der Raspi kaputtgehen kann.
Die China Karte weils mich interessiert, ob ich das ans Laufen bringe - auch wenns eine weitere Konfigurations-Ebene dazu nimmt, die ich mir eigentlich ersparen wollte.
Was braucht so eine Karte an Stromversorgung? Die 24V werden doch nur benötigt wenn die Stepper (+Treiber) da direkt draufhängen, oder?

Edit: Order ist raus, mal schauen wie lange die Lieferung dauert. 
 
  • WKS-3D
  • WKS-3D's Avatar
09 Oct 2025 04:13

Tipps für aktuelle LinuxCNC Hardware gesucht

Category: Deutsch

Naja, den Rpi5 kannste ja trotzdem brauchen, war ja kein rausgeschmissenes Geld, aber weg vom Parallel-Port ist das einzig richtige und dann noch für kleines Geld :)

@UI
Oh, das ist ja mega interessant mit den Karten aus China, da hoffe ich sehr auf deinen Bericht :)


Gruß
Olli
  • cmorley
  • cmorley
09 Oct 2025 03:57
Replied by cmorley on topic Change camera resolution Qtdragon?

Change camera resolution Qtdragon?

Category: Qtvcp

I'm glad you got something working for you. I am testing code for future ability to set resolution.

Chris
  • marcelovx23
  • marcelovx23
09 Oct 2025 03:02
Replied by marcelovx23 on topic XHC-WHB04B-04 Got it working

XHC-WHB04B-04 Got it working

Category: Advanced Configuration

[SOLVED] XHC-WHB04B-6 on LinuxCNC 2.9.6 (QtDragonHD + 7i96S) — Beginner notes
(I am sharing the exact steps I followed, written simply. Many threads assume advanced users; I am a beginner.)My machine / system
  • Gantry router XYYZ (dual Y motors), work area approx. 1300 x 1210 mm
  • Controller: Mesa 7i96S (Ethernet, step/dir)
  • Spindle: 2.2 kW, 24,000 RPM
  • UI: QtVCP / QtDragon_HD
  • OS: Raspberry Pi 5, Debian 12 (Bookworm)
  • LinuxCNC 2.9.6
What actually fixed it (short version)
  1. Load the pendant HAL file as a HALFILE (before the post-GUI), same as the donor machine.
  2. Add MDI_COMMAND lines under [HALUI] so pins halui.mdi-command-XX exist.
  3. Keep qtvcp_postgui.hal clean (only GUI signals, no pendant driver).
  4. In my case, moving the WHB USB dongle to another port made the wheel/jog and DRO updates work.
STEP 1 — Copy the pendant HAL file
Place xhc-whb04b-6.hal in your config folder (the same folder that has your .ini and main .hal), e.g.:
~/linuxcnc/configs/YOUR-MACHINE/xhc-whb04b-6.hal
STEP 2 — Load the pendant before the post-GUI
Open your .ini and in the [HAL] section add this line and keep this exact order:
[HAL]
HALUI = halui
HALFILE = CNC-CARPINTERA.hal
HALFILE = custom.hal
HALFILE = xhc-whb04b-6.hal ; <<< NEW: load the pendant here
POSTGUI_HALFILE = qtvcp_postgui.hal ; keep this AFTER
SHUTDOWN = shutdown.hal
Important: do not load the WHB driver inside qtvcp_postgui.hal.STEP 3 — Create MDI pins under [HALUI]
In the same .ini, find (or create) the [HALUI] section and paste this block right under it:
[HALUI]
MDI_COMMAND = (DEBUG,<1>) ; <<< NEW (good for testing macros)
MDI_COMMAND = G10 L20 P0 X[#<_x>/2.0] ; <<< NEW (zero X at part center)
MDI_COMMAND = G10 L20 P0 Y[#<_y>/2.0] ; <<< NEW (zero Y at part center)
MDI_COMMAND = (DEBUG,<4>) ; <<< NEW
MDI_COMMAND = (DEBUG,<5>) ; <<< NEW
MDI_COMMAND = G10 L20 P0 X0 ; <<< NEW (Zero X)
MDI_COMMAND = G10 L20 P0 Y0 ; <<< NEW (Zero Y)
MDI_COMMAND = G10 L20 P0 Z0 ; <<< NEW (Zero Z)
This creates halui.mdi-command-00..07 (indexes follow the order above).
Add more MDI_COMMAND lines if your xhc-whb04b-6.hal uses higher indices.Notes so jogging actually works
  • E-STOP released, Machine ON
  • Manual mode
  • Fully homed (for XYYZ: X, Y1, Y2, Z)
  • On the pendant, use Continuous, or Step + Step size
  • If the wheel does nothing or DRO does not update: try a different USB port/dongle (this was the final fix for me)
Thanks and request
Many thanks to the original thread’s author for sharing files and guidance.
If possible, could you post a short summary of the final button mapping (what each macro-N does, Continuous/Step, ABS/REL, etc.)? That would help beginners keep their configs consistent.If anyone needs it, I can share my final .ini, xhc-whb04b-6.hal, and a minimal qtvcp_postgui.hal exactly as they ended up.
  • richcolvin
  • richcolvin's Avatar
09 Oct 2025 01:19
Replied by richcolvin on topic Stepper Motor Speed is too slow

Stepper Motor Speed is too slow

Category: Basic Configuration

10 in/sec is well beyond what we ever need; indeed, I'd be surprised if we need to achieve even 0.1 in/sec.  That was just an attempt to see if changing that value would drive the needed speed.

As for commenting out the PID stuff, that was due to the way I understood them to be only needed for servo motors, and not for stepper motors.  This is based on my reading of section 2.13.2. Servos in the manual (linuxcnc.org/docs/stable/html/config/ini...ub:ini:sec:joint-num).

Quite probably, I misunderstood the manual.

I will add the PID stuff back into the configuration and test tomorrow, and then report back.
  • Cooped-Up
  • Cooped-Up
08 Oct 2025 23:55
Replied by Cooped-Up on topic Maho MH800e Retrofit Project

Maho MH800e Retrofit Project

Category: Milling Machines

After looking at the schematics and hal file I realized there is an error on one or the other but the estop pin I needed to get the machine to release was on tb2 rather than tb3 that the drawing indicates. I connected that so it is "bypassing" the non existent estop switch and bobs your uncle I can get the ui out of estop and mess around with pin outs and what not. I plan on editing the program quite a bit more to move all of the user controls to the 7i73 that will be mounted in the user interface box rather than running all the wires back to the main 7i77 in the electrical enclosure. I verified connectivity with the 7i73 so it should be fairly smooth sailing from here(crossing my fingers) I have ordered as many different breakout boards/connectors so I don't have to splice into the existing wiring. My goal is to have as minimal invasivity if that's a word as possible. In theory being totally reversible with no retermination of connectors. It added a bunch of extra cost but I think it is way more valuable having all the connections in tact and original.
  • Cooped-Up
  • Cooped-Up
08 Oct 2025 23:30
Replied by Cooped-Up on topic Maho MH800e Retrofit Project

Maho MH800e Retrofit Project

Category: Milling Machines

ok here are my files and the reference file for the mh400e which was made about 5 or more years ago I think. I made a bunch of configs so I am sorry the name is the default I need to change it. again I think this is mostly working now short of a few bugs I need to test some things out and move towards wiring things to the mill
  • Doc_emmet
  • Doc_emmet
08 Oct 2025 22:31
Replied by Doc_emmet on topic REMAP=M6 modalgroup=6 python=atc_toolchange

REMAP=M6 modalgroup=6 python=atc_toolchange

Category: Advanced Configuration

Can you create a small Python file (as simple as possible) that when I call it via REMAP = M6 modalgroup=6 python=remap_m6 , for example, only moves the Z-axis by 10mm
  • Joco
  • Joco's Avatar
08 Oct 2025 21:16
Replied by Joco on topic User interface

User interface

Category: General LinuxCNC Questions

Just to follow on from Rod's comment.

Many of the UIs that are visually modern/graphical expect a 1080p display.  For example ProbeBasic imust have 1080p or larger.  The upside is a lot on a single screen at once. The more "original" or "old school" UIs expact much less with a 720p display being very roomy for them.

Re the comments on starting with Axis.  I would second that approach VERY strongly.   You will save youself a huge amount of potential frustration by having a working machine under Axis as your baseline.  That way when moving to another UI and you have issues you can better pin point where things are falling down when you KNOW you have a working Axis config.
  • PCW
  • PCW's Avatar
08 Oct 2025 21:11
Replied by PCW on topic Stepper Motor Speed is too slow

Stepper Motor Speed is too slow

Category: Basic Configuration

Yes, 8mm/turn = 3.175 turns per inch so ~1900 RPM at 10 IPS
which is at the edge of stepper capability (at least with usable torque)

Perhaps the OP does not know that the hal/ini velocity settings are
in machine units (inch in this case)  per second rather the minute
 
Displaying 271 - 285 out of 22888 results.
Time to create page: 0.213 seconds
Powered by Kunena Forum