Advanced Search

Search Results (Searched for: )

  • COFHAL
  • COFHAL
28 Jun 2024 01:21
Replied by COFHAL on topic disable run button if door open

disable run button if door open

Category: AXIS

on my halcompil, i see the pin axisui.run-disable

The axis pins must be loaded after AXIS is fully loaded or else the pin does not exist error occurs.  Include them in another file so it loads later, like postgui.  hal or other.

 

  • Cant do this anymore bye all
  • Cant do this anymore bye all's Avatar
28 Jun 2024 01:03
  • Cant do this anymore bye all
  • Cant do this anymore bye all's Avatar
28 Jun 2024 00:49
Replied by Cant do this anymore bye all on topic when an inch isn't

when an inch isn't

Category: Installing LinuxCNC

Crickets ? A measure of lack of response ?
  • COFHAL
  • COFHAL
28 Jun 2024 00:48
Replied by COFHAL on topic G54 ON START UP

G54 ON START UP

Category: AXIS

I already found the problem after two days, it was in the .HAL file in the various signal section, they had included the instruction halui.abort, but the truth is I don't know why this instruction changes from G54 to G53.

I think the problem is really because of the number of halui instructions within the file.  hal, as soon as I add an additional instruction of type halui, G53 appears at the beginning.  I don't understand why that happens.
 

  • MaHa
  • MaHa
28 Jun 2024 00:48 - 28 Jun 2024 15:30
Replied by MaHa on topic Cutting Circles

Cutting Circles

Category: General LinuxCNC Questions

This is an idea, without G41/G42, but it compensates tooldiameter from tooltable entry. Just enter the machining diameter near top.
Straight X move, then one round, and straight back to center.
You can do a helix also, just start at Z0, enter in the line with G2 also Z depth and amount P of turns (Z-2 P10)
Maybe G2 G3 can be changed for opposite direction.
It is not tested, so try careful dry run
Edit:
It is tested in my sim, and half circle lead in / lead out added for smooth transition to circle

;*************************************
;INPUT MACHINING DIAMETER

#<DIAMETER> = 1
;************************************

(DEBUG, DIA= #<DIAMETER>;)

G0 G54 G90 G20 G64 P.013
X0 Y0  F5
S1000 M3
Z1
#<R_EFF> = [[#<DIAMETER> - #5410] / 2]

X0. Y0.
G1 Z-2
G2 X-#<R_EFF> Y0 I-[#<R_EFF> / 2] J0
X-#<R_EFF> Y0 I#<R_EFF> J0
X0 Y0 I[#<R_EFF> / 2] J0
G0 Z1
M5
M2


 
  • PCW
  • PCW's Avatar
28 Jun 2024 00:12
Replied by PCW on topic Problem with a MESA 7i76

Problem with a MESA 7i76

Category: General LinuxCNC Questions

You must mean 7I76E if you have CR17

CR17 is a SMBJ5V0 (SMB package)
Its job is to prevent overvoltages on the the
7I76Es 5V rail.

If PTC4 was fried that sounds like you accidentally
connected 24V to the 5V outputs on TB3. PTC4 is a
1206 2A PTC MF-NSMF200-2

Most likely hidden damage would be to 5V parts
U10 (serial), U12 (step/dir 0..3), U15 (encoder) ,
U19 (step/dir 0 ..3),  and U24 (step/dir 4)

Also if 24V got routed to step/dir outputs, the 27 Ohm resistor 
networks near the step/dir outputs may have been damaged
(check with ohmmeter, damage =  high resistance/open)
  • claytoncramer
  • claytoncramer
27 Jun 2024 23:39
Cutting Circles was created by claytoncramer

Cutting Circles

Category: General LinuxCNC Questions

I feel really stupid asking this question.  I want to use G2 to cut a 1" diameter circle with a .125" end mill, with the center at (x,y).  There are tutorials on cutting arcs, on cutting rounded corners on squares.  There are lots of gCode generators that seem to produce nothing.  Can anyone tell me how tto write either G2 or G3 starting at (x, y) with diameter d feed rate 5?  IIf I have one working example, I will write a prograjm to produce the gCode for whatever size I need.  I am sure most of you can do this in your sleep.  I fear the stroke in 2014 took away too much analytic skill.
  • tommylight
  • tommylight's Avatar
27 Jun 2024 23:31
Replied by tommylight on topic when an inch isn't

when an inch isn't

Category: Installing LinuxCNC

OP ?
Crickets... :)
  • tommylight
  • tommylight's Avatar
27 Jun 2024 23:18
Replied by tommylight on topic lube.py "No such file or directory"

lube.py "No such file or directory"

Category: HAL

Try this:

loadusr -W lube.py
or

loadusr -W ./lube.py
If that does not work, edit the lube.py file and check at the top there should be something like
#!/usr/bin/python
or
#!/usr/bin/python2
and change it to
#!/usr/bin/python3
save, try running LinuxCNC
  • Grotius
  • Grotius's Avatar
27 Jun 2024 22:59
Replied by Grotius on topic disable run button if door open

disable run button if door open

Category: AXIS

In hal i think :
net just_a_name axisui.run-disable hm2_7i97.0.inmux.00.input-11-not

Then the python code is indeed stopping at this line when run-disable is active:
if comp : return

The name : axisui.run-disable looks ok to me.

I think you are almost there.
  • Cant do this anymore bye all
  • Cant do this anymore bye all's Avatar
27 Jun 2024 22:43
Replied by Cant do this anymore bye all on topic when an inch isn't

when an inch isn't

Category: Installing LinuxCNC

I only measure in bannanas


That is most wise
  • Grotius
  • Grotius's Avatar
27 Jun 2024 22:42
Replied by Grotius on topic Trajectory Planner using Ruckig Lib

Trajectory Planner using Ruckig Lib

Category: General LinuxCNC Questions

Hi,

Made a sample video of the progress so far for hal-core-2.0.

The gui sends the jog commands to the hal-component "state_machine.so" via shared memory.
Jogging is done by using scurve.
Motion speeds, acc, jerk, etc, is saved within the program settings tab. No ini file is needed so far.
Qt has a nice save settings framework, wich works ok.

In the state_machine.so component, all info is there to write the trajectory planner coming time.

So far the code is compact.

  • vre
  • vre
27 Jun 2024 22:21
Replied by vre on topic Hydraulic pump control

Hydraulic pump control

Category: Advanced Configuration

I have done this with and2 and works
but how can i give 1second delay to and2 output
so the hydraulic pump work 1s more after pressure switch triggered ?
  • disneysw
  • disneysw
27 Jun 2024 22:21
Replied by disneysw on topic Problem with a MESA 7i76

Problem with a MESA 7i76

Category: General LinuxCNC Questions

Sorry to dig up an old thread but I have fried a 7I76 board due to connecting the end stop plug into the spindle connector and shoving 24V where it was never supposed to go!

Mine is a rev C board and PTC4 is badly scorched but still seems to be working. CR17 went short circuit and was burnt to a crisp which in some ways may have been a saving grace.

The FPGA is working and the voltage rails look good but the stepper buffers seem to be damaged.

I know I need to order SSOP versions of the 74ACT541 and 74ACT540 but what values are the PPTC and CR17? What else may have gone?

Finally is the schematic for the 7i76 available?
Displaying 23731 - 23745 out of 26453 results.
Time to create page: 0.476 seconds
Powered by Kunena Forum