Welcome to Our Community

Some features disabled for guests. Register Today.

Understanding g55

Discussion in 'Control Software' started by g.schrader, Aug 22, 2024.

  1. g.schrader

    Builder

    Joined:
    Apr 3, 2024
    Messages:
    10
    Likes Received:
    1
    Hello everyone, as the title states I'm having some problems with the workstations in Control. I have a turning/4th axis station for my cue making. And I have g55 set for that. The problem is after I run a program it changes back to g54. I have to constantly change it back otherwise my program starts to run completely off from its zeros. How do I get it to stay on the set station. Thanks for any help you guys can provide.
     
  2. Peter Van Der Walt

    Peter Van Der Walt OpenBuilds Team
    Staff Member Moderator Builder Resident Builder

    Joined:
    Mar 1, 2017
    Messages:
    14,868
    Likes Received:
    4,283
    Make sure your gcode contains the coordinate system in its header.
     
  3. David the swarfer

    David the swarfer OpenBuilds Team
    Staff Member Moderator Builder Resident Builder

    Joined:
    Aug 6, 2013
    Messages:
    3,430
    Likes Received:
    1,907
    EVERY program you run must set the Work Coordinate System it expects to be using.
    ALL programs, without fail, it is the only safe way to operate.
    Similarly they must also always set any modes they expect, like G90 G17 G46 etc, and also G20 or G21 for inch/metric mode .

    The controller boots in G54 mode, so to switch to G55 you can create a macro that runs at startup (may confuse other operations) , but CONTROL does have a button for switching WCS systems
    upload_2024-8-23_10-22-38.png
     
  4. g.schrader

    Builder

    Joined:
    Apr 3, 2024
    Messages:
    10
    Likes Received:
    1
    Not sure if I put the right code in or put it in the right spot but when I added a line of G55 to the program it f'ed everything up. To the point where I had to remove control and start over. Every time I zero something out my work station was changing.
     
  5. David the swarfer

    David the swarfer OpenBuilds Team
    Staff Member Moderator Builder Resident Builder

    Joined:
    Aug 6, 2013
    Messages:
    3,430
    Likes Received:
    1,907
    then there is something wrong with your process (-:

    to work in WCS G55:
    1. home the machine (defaults to G54 at switch on!)
    2. select G55 in CONTROL
    3. jog to origin point and 'setZero' or use a probe to find the workpiece origin, this sets the offsets for G55.
    4. load Gcode that uses G55 and has G55 in the gcode.
    5. check that you have G55 selected and that 'goto X0 Y0' goes to the correct origin on the workpiece
    6. run Gcode
    I have done jobs using all 6 offsets (G54 to G59) in one Gcode file, this does work.
     
    Peter Van Der Walt likes this.
  6. g.schrader

    Builder

    Joined:
    Apr 3, 2024
    Messages:
    10
    Likes Received:
    1
    at what spot do i add the g55. later today i can screen shot the program and upload it for you to look at.
     
  7. David the swarfer

    David the swarfer OpenBuilds Team
    Staff Member Moderator Builder Resident Builder

    Joined:
    Aug 6, 2013
    Messages:
    3,430
    Likes Received:
    1,907
    no screenshots, thanks, just upload the file itself.

    even easier is to look at Gcode generated by any CAM system, for example SketchUcam, the Gcode plugin for Sketchup

    (Generated by SketchUcam V1.5a-241a161)
    (Bit diameter: 3mm)
    (Feed rate: 2540mm/min)
    (Material Thickness: 6mm)
    (Material length: 550mm X width: 1000mm)
    (Overhead Gantry: true = Conventional Cut)
    (Plunge Depth first)
    (Optimization is ON)
    (Arc Feedrate scale is ON)
    (Origin offset ~ 22mm, ~ 25mm)
    (www.PhlatBoyz.com)
    G90 G21 G49 G17 F2540
    G54
    G53 G00 Z0.0
    G00 X0 Y0
    M3 S15000
    G00 Z3.0
    X-1.5 Y-1.5
    G00 Z0.5
    G01 Z-6.0 F2540
    X101.5
    Y56.5
    X-1.5
    Y-1.5
    G00 Z3.0
    G00 X0 Y0 (home)
    G53 G00 Z0.0
    M05
    M30

    Just replace the G54 with whatever you need.
    All Gcode should have a header like the one you see just above the G54, setting modes that this code expects (since modal settings stay set between jobs, every file must set its own modes, never assume the mode is correct)
    G90 absolute coordinates will be used
    G21 metric coordinates and feedrates
    G49 remove tool offsets
    G17 use XY plane for arcs
    F2540 default feedrate
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice