Advanced Search

Search Results (Searched for: )

  • Lcvette
  • Lcvette's Avatar
07 Sep 2025 04:53
Replied by Lcvette on topic Jogging in Probe Basic

Jogging in Probe Basic

Category: QtPyVCP

Try the docs for job settings, there was an update on it. It's fully explained in the docs page configuration in ini file instructions
  • Lcvette
  • Lcvette's Avatar
07 Sep 2025 04:50

probe_basic "Latest update requires config modification"

Category: QtPyVCP

It just starts on the status page, is not an error, just informational.
  • Lcvette
  • Lcvette's Avatar
07 Sep 2025 04:48
Replied by Lcvette on topic Set Tool Touch Off Pos

Set Tool Touch Off Pos

Category: QtPyVCP

Do you have all the subroutines in the sub folder and are you sure you added all the bar file parameters per the docs?
  • cmorley
  • cmorley
07 Sep 2025 02:29

Is There a GTK_Vismach Equivalent to Qt_Vismach?

Category: GladeVCP

Just for completeness:
gladevcp version -no
qtvcp version embedded in axis - yes there is a sample config under axis/qtvcp/qtvismach_tab
  • tommylight
  • tommylight's Avatar
06 Sep 2025 22:15
Replied by tommylight on topic Compleatly off line Voron image possible ?

Compleatly off line Voron image possible ?

Category: Additive Manufacturing

Had a bit of time to go through the forum and noticed we did not give any usable info here, shame on us! :)
Use clonezilla, it is free and works perfectly for saving full images of anything from HDD/SSD/NVME.
So:
-install Linux Mint, any flavour
-use KIAUH to install Klipper and MainSail and everything you need
-set your printer properly and make sure everything is working
-use CloneZilla to save an image of that drive
-
This requires a USB stick with CloneZilla, and another drive to save images to, preferably not FAT/FAT32 formated as FAT32 can only store up to 2GB file size. I use EXT4.
  • PCW
  • PCW's Avatar
06 Sep 2025 21:58 - 06 Sep 2025 21:59

Troubles to get started with SD240 Retrofit

Category: Turning

OK that indicates either a problem with the 7I33, the connecting cable, the FPGA card
or the firmware.

Note that this test will only work if the 7I33 is jumpered for TTL encoder mode.
  • ziggi
  • ziggi's Avatar
06 Sep 2025 21:53 - 06 Sep 2025 21:55

Troubles to get started with SD240 Retrofit

Category: Turning


2. Leaving the TTL option enabled, can you check that grounding the INDEX+ input (encoder disconnected)
changes the state of the hal index pin (hm2_7i80.0.encoder.00.input-index for X)

 

This was just a copy of your questions- sorry, the "2" is missing in my copy and below I wrote the answer to the question you asked.
  • scsmith1451
  • scsmith1451's Avatar
06 Sep 2025 21:44
Replied by scsmith1451 on topic Mapping key codes to specific jog rates

Mapping key codes to specific jog rates

Category: Advanced Configuration

Andy;

Some time ago I was poking around my LCNC install and ran across a python file that had default key mappings. Within that file I found the "I/i" key mappings which seem to toggle the current jog rate based on the list established in the ini file. I tried to invoke these key in the AXIS interface, but no change was noticed in the jog speed.

I also noticed that there were keys that were mapped to the functions set_feedrate() and set_rapidrate(). What I would like to do is map the '<' key to a very slow rate, say 1mm, and the '>' key to a very rapid rate, say 100mm. To do this I suspect that I would need a function like set_jograte(). I did notice in the documentation, I believe it is the QtVCP section that there was a set_jograte() function, but it appears to specific to QtVCP. Just hoping there is an equivalent function for GladeVCP.

Regards,

With these two keys, I can use my wireless mini keyboard to jog the laser to the program origin of any job quickly rather than from the normal keyboard which makes it hard to watch the laser and jog simultaneously. 
  • MaHa
  • MaHa
06 Sep 2025 21:23

Having issues with oword test scripts in version 2.9.4

Category: O Codes (subroutines) and NGCGUI

I think there are square brackets required
#<value> = [30 * #<factor>]


setting to read values from ini file

[RS274NGC]
INI_VARS = 1 
  • Hakan
  • Hakan
06 Sep 2025 21:23 - 06 Sep 2025 21:23

Having issues with oword test scripts in version 2.9.4

Category: O Codes (subroutines) and NGCGUI

There is a difference versus the doc linuxcnc.org/docs/html/gcode/o-code.html#ocode:subroutines
Use o100-style instead of o<mytest2>?
o100 sub
     g-code
o100 endsub
  • PCW
  • PCW's Avatar
06 Sep 2025 21:22

Troubles to get started with SD240 Retrofit

Category: Turning

INDEX+ input (encoder disconnected)
changes the state of the hal index pin (hm2_7i80.0.encoder.00.input-index for X)

No it does not change in HAL-Show, it stays high (yellow) even if I short ENCX0 with GND (PIN on the 7i33)


Not sure what you mean here, to me you seem to be saying  hm2_7i80.0.encoder.00.input-index changes
when you ground the INDEX+ pin but then it does not change.


 
  • scsmith1451
  • scsmith1451's Avatar
06 Sep 2025 21:09

Having issues with oword test scripts in version 2.9.4

Category: O Codes (subroutines) and NGCGUI

All;

I'm running LCNC 2.9.4 upgraded from a 2.9.3 disc image install.

I have this simple test script:

o<mytest2> sub
    #<factor> = 1
    o100 if [#<_metric>]
        #<factor> = 25.4
    o100 endif

    #<value> = 30 * #<factor>

    (LOGOPEN,mytest.txt)
    (LOG, factor: #<factor>)
    (LOG, value:  #<value>)
    (LOGCLOSE)
o<mytest2> endsub

in my nc_files directory. If I comment out the two lines with "value" in then the script runs fine in both sim.axis and sim.axis_mm profiles.  When I uncomment the lines I get this output:

emc/task/emctask.cc 68: interp_error: Bad character '*' used
Bad character '*' used

According to the documentation "*" is the multiplication operator.  Anyone else experiencing this issue? Is there a resolution?

The second issue is closely related. 

I also have this test script:

o<mytest2> sub
    #<factor> = 1
    o100 if [#<_metric>]
        #<factor> = 25.4
    o100 endif

    (LOGOPEN,mytest.txt)
    (LOG, laser-offset-x: #<_ini[LASER]laser-offset-x>)
    (LOG, laser-offset-y: #<_ini[LASER]laser-offset-y>)
    (LOG, park-offset:     #<_ini[PARK]park-offset>)
    (LOG, z-offset:          #<_ini[PROBE]z-offset>)
    (LOGCLOSE)
o<mytest2> endsub

where I try to read ini parameters defined in the axis.ini and axis_mm.ini files as follows:

[LASER]
laser-offset-x = -3.1702
laser-offset-y = 0.0568

[PARK]
park-offset = 0.125

[PROBE]
z-offset = 0.543

When the script is executed the output looks like this:

LOGOPEN(mytest.txt) -> 0x55cc4c8cee20
LOG( laser-offset-x: ######)
LOG( laser-offset-y: ######)
LOG( park-offset:     ######)
LOG( z-offset:          ######)
LOGCLOSE()

Again, is anyone else experiencing this issue in 2.9.4? Is there a resolution?

Kind regards
  • ziggi
  • ziggi's Avatar
06 Sep 2025 20:01 - 06 Sep 2025 20:12

Troubles to get started with SD240 Retrofit

Category: Turning

INDEX+ input (encoder disconnected)
changes the state of the hal index pin (hm2_7i80.0.encoder.00.input-index for X)

No it does not change in HAL-Show, it stays high (yellow) even if I short ENCX0 with GND (PIN on the 7i33)

And Sorry, I mixed it up- the jumpers W1-W4 are set to UP position so TTL/RS-422  sorry!
 
  • ziggi
  • ziggi's Avatar
06 Sep 2025 19:42

Troubles to get started with SD240 Retrofit

Category: Turning

1. if the encoders have differential outputs, why in the 7I33 jumpered for single-ended (TTL) inputs
Answer: because I was told so   - I am really not ecperienced in these things and asked how to get the motors working and showed the schematics to experienced guys- and I was told how to wire the encoders and how to jumper the 7i33.2. Leaving the TTL option enabled, can you check that grounding the INDEX+ input (encoder disconnected)
changes the state of the hal index pin (hm2_7i80.0.encoder.00.input-index for X)

...ok, I will check this with disconnected encoder and report.

Thank you
Sigi
  • GDTH
  • GDTH's Avatar
06 Sep 2025 19:19

Carousel with counts move x amount of pockets

Category: Advanced Configuration

Hi all,Before I head to bed, I wanted to ask if anyone can quickly help me with my current frustration: getting this machine’s carousel working.I’ve got homing working, but there’s something odd—if the carousel is already homed and I try to home it again, nothing happens. I’ve managed to get M13 working, but I still need to sort out M11 and M12. I’ll attach my HAL and INI files here.I’m wondering if there are better ways to handle this, or if there are any good examples I could look at. My machine doesn’t have sensors for the pockets (which I would have preferred), so I’m working around that.Right now my biggest struggle is that I’m getting “unary” errors from my subroutine. When I try to trace the problem, the error messages aren’t very clear about what’s actually wrong. Is there a way to debug subroutines more effectively? At the moment the basic error messages don’t give me enough detail to figure it out.Any tips would be greatly appreciated
Displaying 9001 - 9015 out of 18010 results.
Time to create page: 0.261 seconds
Powered by Kunena Forum