Advanced Search

Search Results (Searched for: )

  • nanowhat
  • nanowhat
26 Jul 2025 00:04
Replied by nanowhat on topic Controlling existing motors with resolvers

Controlling existing motors with resolvers

Category: Driver Boards

The X and Z drives list the same rating as C: 240VAC, 7 Amp output.
  • RLA
  • RLA
25 Jul 2025 23:40
Replied by RLA on topic limit switch problem

limit switch problem

Category: General LinuxCNC Questions

So This from HAL May be wrong or incomplete?

Anything needed in ini?

Thanks for reply!!
  • nanowhat
  • nanowhat
25 Jul 2025 23:31
Replied by nanowhat on topic Controlling existing motors with resolvers

Controlling existing motors with resolvers

Category: Driver Boards

The existing drives are:
Atlas Copco DMC2 31025P (X axis)
DMC2 31025 (Z axis)
DMC2 31025P (C axis) <- This is the dead one. It's also labeled as having been made by Inmotion Technologies AB

The C axis drive is labeled as 240VAC/7A input, 240VAC/7A output, 400Hz max. At the moment I can't see the labels on the other drives, but I will find out their ratings.

The resolvers are part of the motors, so I don't know anything about them (except Z).
The two motors I can get to are:
Wittenstein TPM004-031R-320P-BP1-0301F000 320V, 5.1A max (X axis)
Elmo PSA 90/6-79-P-PMB-4048 230VAC, 6.6A max continuous. Resolver: 56046-01 6-POL (Z axis)

I cannot get to the C axis motor. It's at the bottom center of the robot which is bolted down to the floor. All I know about that axis is that the motor is physically the largest on the robot, has the same color scheme as the X motor and was possibly made by the same company.

I have scoped the resolver signals: the existing drives run them at 4KHz and the resolvers all work as far as I can tell.
  • Lcvette
  • Lcvette's Avatar
25 Jul 2025 23:24
Replied by Lcvette on topic User tabs file missing probe basic

User tabs file missing probe basic

Category: QtPyVCP

Go through the docs and follow the instructions for in configuration. It has what you need to correctly setup the ini for probe basic.
  • tommylight
  • tommylight's Avatar
25 Jul 2025 22:51
Replied by tommylight on topic limit switch problem

limit switch problem

Category: General LinuxCNC Questions

This is a stab in the dark as i do not have a 7i96S (did have 7i96) but inputs should be with something like "inmux" in the naming, sorry been a long time since i did a 7i95 that had something similar in the pin naming.
  • tommylight
  • tommylight's Avatar
25 Jul 2025 22:49
Replied by tommylight on topic Controlling existing motors with resolvers

Controlling existing motors with resolvers

Category: Driver Boards

While you wait for PCW to confirm when the 8i20 might be in stock:
You can use other drives to drive motors and still use the existing resolvers, but no idea what exactly would work for you, probably any "voltage mode" drive, and maybe "torque mode" will also work, but you should wait for someone else to chime in and confirm any of this.
I am sure LinuxCNC will work with any setup, not sure about cheap drives plastering all possible options on the label and later finding out they do only step/dir or only +-10V...although some +-10V should work if they do not explicitly require having a tacho attached.
This would mean using a Mesa 7i97T together with 7i49.
In the meantime some more info might help narrow things down, like motor voltage/current/power, resolver type/make/model (very important as i have resolvers that do not work with 7i49, yes i am unlucky as heck), brakes, tacho maybe, etc.
  • Benb
  • Benb's Avatar
25 Jul 2025 22:43

Controlling existing motors with resolvers

Category: Driver Boards

By providing detailed technical specifications for your servo amplifier and motor, you’ll significantly improve your chances of receiving an accurate answer.
  • tommylight
  • tommylight's Avatar
25 Jul 2025 22:39

HUGE Mazak fully automated 5 axis laser cutter for pipes/tubes/profiles/

Category: Show Your Stuff

Yes, the networking part, we were misled badly and chased our tails by having the laptop wired to the console while the network required for file transfers was at the back of the main electronics cabinet! That is 6 hours i will never get back! I kept wondering why W2K has an IP set and the Mazak software has another IP set...now i know.
So now it can be used properly with the laptop, but i would still like to be able to use it without the laptop attached since i already figured out how to copy stuff to it, so i will report the exact model when they get back from Germany in a few days.
Thank you very much for everything.
  • Tntmold
  • Tntmold
25 Jul 2025 21:59

Ethercat installation from repositories - how to step by step

Category: EtherCAT

Is there a repository that currently is complete and works? I have been trying to get an installation working since March with no luck at all. I continually get errors about various components (LCEC, Boost, meson, etc) I have been able to get an "install" using the repository on this thread but it seems to lack full connection to the before mentioned components
  • ErrickW
  • ErrickW
25 Jul 2025 21:32
  • Franklin
  • Franklin
25 Jul 2025 21:29 - 25 Jul 2025 21:31
Replied by Franklin on topic WHB02 remote control to QtPlasmac

WHB02 remote control to QtPlasmac

Category: Plasmac

Thank you, but I have already changed the plasmac component and got the result I wanted. I added a few lines:
   self.extJogXplusPin = self.h.newpin('ext_jog_x_plus', hal.HAL_BIT, hal.HAL_IN)
   self.extJogXminusPin = self.h.newpin('ext_jog_x_minus', hal.HAL_BIT, hal.HAL_IN)
   self.extJogYplusPin = self.h.newpin('ext_jog_y_plus', hal.HAL_BIT, hal.HAL_IN)
   self.extJogYminusPin = self.h.newpin('ext_jog_y_minus', hal.HAL_BIT, hal.HAL_IN)
   self.extJogZplusPin = self.h.newpin('ext_jog_z_plus', hal.HAL_BIT, hal.HAL_IN)
   self.extJogZminusPin = self.h.newpin('ext_jog_z_minus', hal.HAL_BIT, hal.HAL_IN)

   self.extJogXplusPin.value_changed.connect(lambda v: self.gui_button_jog(1 if v else 0, 'x', 1))
   self.extJogXminusPin.value_changed.connect(lambda v: self.gui_button_jog(1 if v else 0, 'x', -1))
   self.extJogYplusPin.value_changed.connect(lambda v: self.gui_button_jog(1 if v else 0, 'y', 1))
   self.extJogYminusPin.value_changed.connect(lambda v: self.gui_button_jog(1 if v else 0, 'y', -1))
   self.extJogZplusPin.value_changed.connect(lambda v: self.gui_button_jog(1 if v else 0, 'z', 1))
   self.extJogZminusPin.value_changed.connect(lambda v: self.gui_button_jog(1 if v else 0, 'z', -1))
It works great. 
  • nanowhat
  • nanowhat
25 Jul 2025 21:19

Controlling existing motors with resolvers

Category: Driver Boards

At work we have a robot with a dead servo drive. The manufacturer is still around, and says that the original drives aren't available by any means. As far as I can tell, the motors are ordinary 3 phase brushless servos, but with resolvers. I can't find any industrial servo drives or systems that use resolvers. A few manufacturers list drives that can take input from a resolver, but of course they all say "call for quote" before I can get any information on the device.

I'm aware of the Mesa 7I49 resolver interface board, and the 8I20 PWM amplifier (which is out of stock). Are there any other industrial servo amplifiers that work like the 8I20?

This is a professional application: I am not going to screw around designing boards, nor will I consider hobby-grade hardware. I'd like the next person who needs to work on this machine to be able to do so.
  • RLA
  • RLA
25 Jul 2025 20:44
limit switch problem was created by RLA

limit switch problem

Category: General LinuxCNC Questions

Hi ...after finally getting a micro switch wired up for limit switch,,,light shows on/off on mesa7ip6s board,..hal meter shows working... but when I run axis and hit switch held in my hand....no change....keeps moving. been at his all day...I usually like to figure things out myself but now I am weary...grateful for some help if possible.

Thanks,

Rick
  • mBender
  • mBender
25 Jul 2025 19:53

LinuxCNC-RIO - RealtimeIO for LinuxCNC based on FPGA (ICE40 / ECP5)

Category: Computers and Hardware

Put my PCB together! It works! Very happy to have moved on from breadboard to something more reliable!
Displaying 541 - 555 out of 24496 results.
Time to create page: 0.299 seconds
Powered by Kunena Forum