Andrew Mirsky

Results 10 comments of Andrew Mirsky

The terminal opening is a side-effect of an underlying issue that eel can't instantiate correctly. Even if you redirect the output to a file to prevent the console from opening,...

When eel creates your app using `pyinstaller`, avoid using `sys.path.insert` and `os.chdir`; once packaged, these will be problematic for running on computers other than the one used to build the...

@SK-StYleZ I expanded klipper support for G2/G3 and awaiting feedback : https://github.com/Klipper3d/klipper/pull/5910 @WackoKacko I'm about to open a pull request for [klipper work offset / coordinate system support](https://github.com/KlipperNC/klipper/blob/work_offsets/docs/G-Codes.md?plain=1#L1296) (G10, G53,...

I stumbled across another python 2/3 discrepancy in `parsedump.py` when expanding arc command support. It's included in that [pull request](https://github.com/Klipper3d/klipper/pull/5910) but you can cherrypick/patch from [`klippy/parsedump.py`](https://github.com/Klipper3d/klipper/pull/5910/commits/cc362082bef6a893c99912c710e030004bd043e1#diff-1bbb9cd3f60b825fec9c0ec2dea625cefaedda5f9245176c088a67bad7fbef0a) directly.

Appreciate the feedback. Will move items out of `gcode.py` and i'll move the changes to `parsedump.py` to a separate PR. I'm using klipper to control a Sherline end mill CNC....

Instead of picking any one gcode "standard", Fusion 360 enables CAM to CNC by having [controller-specific](https://cam.autodesk.com/hsmposts) post-processor plugins following a [javascript-based scripting API](https://cam.autodesk.com/posts/posts/guides/Post%20Processor%20Training%20Guide.pdf). The two options are: 1) create a...

Plans for the remaining [cnc command set on discourse](https://klipper.discourse.group/t/cnc-command-support/5402). Feedback welcome!

Instead of focusing on specific commands, my thought process has been around CNC concepts, of which, coordinate systems (aka workspaces) exist no matter what firmware is implemented. The thing I...

@KevinOConnor I've added a command line flag for the work offsets storage file and removed the use of pickle in favor of the config parser. These offsets use the same...

@KevinOConnor work offsets, i guess, could be implemented with SET_GCODE_OFFSET and save_variables module. but it seems like a messy / unstable way to implement. It all depends if klipper should...