Advanced Search

Search Results (Searched for: )

  • Lcvette
  • Lcvette's Avatar
07 Sep 2025 04:58
Replied by Lcvette on topic Probe Basic Screen missing axes

Probe Basic Screen missing axes

Category: QtPyVCP

Glad you got it resolved
  • Lcvette
  • Lcvette's Avatar
07 Sep 2025 04:56

Probe Basic tool touch off gives "Probe tripped during non-probe move"

Category: QtPyVCP

Yeah debounce looks for a input over a time period before acting. Just be sure to recalibrate after you find the setting that solves your issue
  • 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!
 
Displaying 2056 - 2070 out of 22605 results.
Time to create page: 0.376 seconds
Powered by Kunena Forum