Good evening. My NewtWave Piranha post processor inserts comments, by using variables, at the top of the gcode to describe things like material dimensions, safez height, tool name, etc. Any problem if I edit my OB post processor to insert those? Thx, rink.
I take it you mean in Fusion360? The OB post already inserts a bunch of info about the job, but not as 'variables' because GRBL does not understand and will abort with an error. The new grblHAL based controllers (BB X32) will support variables in the future but only the X32 specific post will support that. However, since the post is open source you can modify it to do anything you need (it is Javascript), but you will need to merge your changes into any future upgraded version we release.
Good morning. Not using Fusion 360 for CNC (yet). I'm using Vectric VCarve Pro. But I've upgraded from a NextWave Piranha to an OB LEAD 1515. I previously used the Piranha PP, but I now use the OpenBuilds GRBL PP. The Piranha PP had the following: +--------------------------------------------------- + Commands output at the start of the file +--------------------------------------------------- begin HEADER "( [TP_FILENAME] )" "( File created: [DATE] - [TIME])" "( for Next Wave Automation from Vectric )" "( Material Size)" "( X= [XLENGTH], Y= [YLENGTH], Z= [ZLENGTH])" "( Z Origin for Material = [Z_ORIGIN])" "( XY Origin for Material = [XY_ORIGIN])" "( XY Origin Position = X:[X_ORIGIN_POS], Y:[Y_ORIGIN_POS])" "( Home Position)" "( X = [XH] Y = [YH] Z = [ZH])" "( Safe Z = [SAFEZ])" "([FILE_NOTES])" "(Toolpaths used in this file" "([TOOLPATHS_OUTPUT])" "(Tool used in this file: )" "([TOOLS_USED])" "([TOOLNAME])" "(|---------------------------------------)" "(| Toolpath:- '[TOOLPATH_NAME]' )" "(|---------------------------------------)" So, I'm wondering if I can put some of that in my OpenBuilds GRBL PP? At present, the OpenBuilds GRBL PP does not insert any of this into my gcode file. I'd like it to be there for reference. Thx, rink.
"comments" not "variables" You can edit posts yes, just always at own risk and keep an eye on updates
Sorry. I meant “variables” in the sense that the term [XH] is a variable that represents a numeric location. That variable is then inserted in the comments in order to display that Lyon the final gcode. So I guess my question is: can I insert comments containing things like this in my OB PP so that I can see those actual values in the final gcode? BB32 handles that? I will give it a try and see what happens.
Update, in case it helps someone else... YES, it works. I inserted this block of comments into my OB Post Processor, in the HEADER section, just above the T1 command. Posted out a toolpath and opened it it OB Control. In Control, on the gcode tab, I could see all of these comments with the relevant values shown, and the toolpath ran without any problems. Thx, rink.