• 0 Posts
  • 14 Comments
Joined 9 months ago
cake
Cake day: September 26th, 2023

help-circle
  • I am not in the UK, but wound up biting the bullet and using QubesOS for my business machine. It’s kind of like a more straightforward to use everyday set of VMs. I have the windows qube there for running CAD/CAM and the sadly sometimes necessary Chrome install. I know this isn’t an ideal solution, but it is the best that I personally have been able to come up with without going through the headache of dual booting, especially when dealing with either govt stuff, need Chrome for crappy websites my clients sometimes force me to use, or actually needing proprietary software that I have licensed for my business (MasterCam in my case).






  • I worked with Fanuc control machines for 20 years up until 2023. Sounds like you were needlessly in macro hell. Just declaring an offset will use either an H (typically height) or D (typically a radius offset in Fanuc controls, but sometimes they are setup for diameter).

    It would go something like this:

    G40G49G80G90 (CLEARS OUT POTENTIALLY PREVIOUS GCODES);
    
    
    T1M06 (EXECUTES A TOOL CHANGE, LEAVE OUT M06 IF JUST DECLARING THE TOOL);
    
    
    G43H01 (DECLARES H01 AS THE HEIGHT OFFSET);
    
    G00ZO.O1 (MOVES THE TOOL 0.01 ABAOVE WORK);
    
    G41D01X1.0 (DECLARES LEFT HAND TOOL OFFSET AS D01);
    

    You don’t need true macro variables for 9/10 applications, or general operation. I feel like you got placed on some overenginered solution.