585,759 active members*
3,889 visitors online*
Register for free
Login
IndustryArena Forum > Other Machines > PCB milling > Reset zero location Planet CNC Controller
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2019
    Posts
    1

    Reset zero location Planet CNC Controller

    I own a Planet CNC MK1 Controller (properly licensed version). I'm not the most competent in GCODE yet and have come up against the follwoing issue.

    I created the outline of a koala head shape for a project and wanted to cut out multiple of these per sheet. So I copied the GCODE and used the following code to allow the machine to move location before cutting the next one out:

    G00 Y40
    G00 X00
    G92 Y00

    But, while this seemed to work fine initially, It has had a weird side effect in that it would move the default location of my working area permanently for every item I now load. To explain I'm attaching my GCODE file and two screen shots.

    Please help! I'm hoping to fix what I'm doing wrong and somehow reset the machine / controller to 'zero' again.

    I'm sure its a simply GCODE command I can use, but am at a loss as to which command to use to fix my issue.

  2. #2
    Join Date
    Nov 2012
    Posts
    154

    Re: Reset zero location Planet CNC Controller

    What happens is exactly what one might expect - you keep applying a larger and larger offset to your work coordinate system with G92 after each part, and as per the reference NIST document that describes how G-code is supposed to work, that offset is supposed to be persistent even across different code runs (the axis offsets get saved to parameters 5211 to 5216). So to get rid of it, you either have to a) physically return to your original, true work zero at the end of the file and issue G92 Y00 one more time while there, or b) from wherever you are when you finish, issue a G92 with a value that would put you to your actual distance from the original, true zero, or c) issue G92.1 when you finish (or at the beginning of all your other G-code files), which is supposed to reset the G92 offsets back to zero.

Similar Threads

  1. Diagram for Planet-CNC Controller board
    By REDAKTION-24 in forum USA Club House
    Replies: 1
    Last Post: 09-10-2023, 09:45 AM
  2. Replies: 5
    Last Post: 10-12-2021, 05:54 PM
  3. Selling my CNC MK3 controller (planet cnc)
    By gizmo333 in forum DeskCNC Controller Board
    Replies: 1
    Last Post: 02-16-2016, 04:10 PM
  4. Planet CNC MK2 Controller
    By ad64075 in forum Stepper Motors / Drives
    Replies: 0
    Last Post: 08-30-2013, 04:12 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •