Advanced Search

Search Results (Searched for: )

  • PCW
  • PCW's Avatar
09 Oct 2025 19:35
Replied by PCW on topic Stepper Motor Speed is too slow

Stepper Motor Speed is too slow

Category: Basic Configuration

FF0 should be 0
  • RLA
  • RLA
09 Oct 2025 18:59
Replied by RLA on topic AC Servo change to run

AC Servo change to run

Category: General LinuxCNC Questions

Thanks for reply..so I just need to lookup how to configure as spindle...no wiring...speed controlled by gcode?...motor driver would need parameters changed or can that be done through linuxcnc?

Thanks again!!
  • Todd Zuercher
  • Todd Zuercher's Avatar
09 Oct 2025 18:50
Replied by Todd Zuercher on topic Gmoccapy tool setter install "errors"

Gmoccapy tool setter install "errors"

Category: General LinuxCNC Questions

The problem is that you can not reuse a hal pin anywhere in that hal file or another hal file. However you can connect multiple hal input pins to a hal signal name (but only one hal output pin).

Not seeing what you have going on in your other hal files I think this might get you going change this line in your post gui hal file from:
net tool-change gmoccapy.toolchange-change <= iocontrol.0.tool-change
to:
net tool-change-request iocontrol.0.tool-change

That may still not get your config working, if you have other similar mistakes in your postgui hal file. But it will get you on to the next one.
  • Fred G
  • Fred G
09 Oct 2025 18:27

Gmoccapy tool setter install "errors"

Category: General LinuxCNC Questions

Hi need some advice I tried to do this much as possible on my own but ran into a error not sure whats the best way to get around it.Looks like i have two pins for tool change ? 

File Attachment:

File Name: linuxcnc.report.txt
File Size:10 KB

File Attachment:

File Name: linuxcnc.report.txt
File Size:10 KB

File Attachment:

File Name: custom_postgui.hal
File Size:0 KB

File Attachment:

File Name: CNC.ini
File Size:6 KB
  • Todd Zuercher
  • Todd Zuercher's Avatar
09 Oct 2025 17:59
Replied by Todd Zuercher on topic Setting Values in INI vs HAL

Setting Values in INI vs HAL

Category: Basic Configuration

For one, thing the "Calibration" window will not show that as a tune-able option in the calibration window.
  • Todd Zuercher
  • Todd Zuercher's Avatar
09 Oct 2025 17:53
Replied by Todd Zuercher on topic AC Servo change to run

AC Servo change to run

Category: General LinuxCNC Questions

I'm not sure that you can do that within a single Linuxcnc configuration, but you can set up 2 separate configs, one using the servo as a 4th axis and a separate one where it is configured as a lathe spindle. Both configs could reside in the same config directory and share most of the config hal files. They would need to have their own ini file though.
  • richcolvin
  • richcolvin's Avatar
09 Oct 2025 17:53
Setting Values in INI vs HAL was created by richcolvin

Setting Values in INI vs HAL

Category: Basic Configuration

Is there any reason to set the values for pins / parameters in the INI vs. the HAL?  Is using the INI simply a best practice? 

For example, this line are in the HAL file:

          setp pid.u.Pgain                            [JOINT_4]P

and this in in the INI file

          P                    = 1000.0

I assume I could set this value in the HAL file without using the INI file:

          setp pid.u.Pgain                            1000.0

 
  • richcolvin
  • richcolvin's Avatar
09 Oct 2025 17:49
Replied by richcolvin on topic Stepper Motor Speed is too slow

Stepper Motor Speed is too slow

Category: Basic Configuration

ACTIONS TAKEN:
I re-added these lines to the HAL file:

setp pid.u.Pgain                            [JOINT_4]P
setp pid.u.Igain                            [JOINT_4]I
setp pid.u.Dgain                            [JOINT_4]D
setp pid.u.bias                             [JOINT_4]BIAS
setp pid.u.FF0                              [JOINT_4]FF0
setp pid.u.FF1                              [JOINT_4]FF1
setp pid.u.FF2                              [JOINT_4]FF2
setp pid.u.deadband                         [JOINT_4]DEADBAND
setp pid.u.maxoutput                        [JOINT_4]MAX_OUTPUT

and these to the INI file

BIAS                 = 0.0
DEADBAND             = 0.00005
MAX_OUTPUT           = 10.0
OUTPUT_SCALE         = 1.000
OUTPUT_OFFSET         = 0.000
P                    = 1000.0
I                    = 0.0
D                    = 0.0
FF0                  = 1.0
FF1                  = 1.0
FF2                  = 0.0

RESULTS:
That seems to have fixed the speed problem I was having. However, a new problem has now arisen:  When I initiate the move, either by jogging (e.g., 0.1") or using the Gcode (e.g., G0 u-0.1 f1), the stepper motor
  1. moves the piece some distance (let's assume it is 0.1"),
  2. reverses back that same distance,
  3. then re-executes steps 1-2 until I stop LinuxCNC.
  • DerKlotz
  • DerKlotz
09 Oct 2025 17:34

Homing Cycle deaktivieren und Achsen von Hand Nullen

Category: Deutsch

Hallo und danke,
vor etwa 1h habe ich eine andere Möglichkeit gefunden. In der pncconfig auf der zweiten oder dritten Seite gibt es eine Option, die man an oder abwählen kann. Heisst sinngemäß "Homing vor MDI" notwendig.
  • marcelovx23
  • marcelovx23
09 Oct 2025 17:31
Replied by marcelovx23 on topic XHC-WHB04B-04 Got it working

XHC-WHB04B-04 Got it working

Category: Advanced Configuration

First of all, thank you so much for your effort and for sharing your files—without them I never would have gotten mine working.
I learned the hard way that it’s not practical to have one machine serve as both a router and a plasma cutter, so I developed a very affordable “plasma router” that works perfectly, and now I keep the two machines separate.
I’m leaving a video so you can see it running in case it helps, and a link where you can download the 3D model and wiring diagrams. I’m sharing it as open-hardware to give back a little of the much that the community—and generous acts like yours—have given me.


3D model and wiring files here
opencnc.mx/wordpress/index.php/elementor-420/
  • RLA
  • RLA
09 Oct 2025 17:25
AC Servo change to run was created by RLA

AC Servo change to run

Category: General LinuxCNC Questions

 Hi..have an ac servo motor setup as 4th axis on wood lathe for position to carve....now i was hoping to use same motor for continuous run as lathe turning...Is this doable?...if so does it require any additional wiring/...I have a Mesa 7i96s  with ethernet..I normally would just try and figure out but I am very pressed for time on this one so any help would be greatly appreciated..

Thanks!,

Rick
  • Tchefter
  • Tchefter's Avatar
09 Oct 2025 16:46

Homing Cycle deaktivieren und Achsen von Hand Nullen

Category: Deutsch

Moin,

in deinermaschine.ini
Also die ini heist so wie du deine Maschine konfiguriert hast.

Gruß
  • Hendrixx
  • Hendrixx
09 Oct 2025 16:20
Replied by Hendrixx on topic XHC-WHB04B-04 Got it working

XHC-WHB04B-04 Got it working

Category: Advanced Configuration

I don't use the pendant anymore and rely on a touch screen and wireless keyboard because my machine is a dual-use plasma /router, and I couldn't get plasmac.comp to play nice with the pendant. But once I get the table put back together, I will revisit and see if the berry is worth the squeeze.
  • DerKlotz
  • DerKlotz
09 Oct 2025 16:10 - 09 Oct 2025 16:14

Strange behavior Mesa 7i76e - FU YL-620A Speedvoltage

Category: Configuration Tools

I found it at pncconf and unchecked "Require homing before MDI/Running". Now it works.
Thanks a lot!
Displaying 241 - 255 out of 22887 results.
Time to create page: 0.200 seconds
Powered by Kunena Forum