Do you think it’s possible for me to implement the drawing feature in the desktop app into a node js website? The way I envision it is having a drawing input square like on the app, but accessed from a website instead. I guess I’m ultimately wondering if it’s possible for me to see how your app generates G-Code from the drawing input?
The GCode part is quite straightforward - you’ll use the G01 command. The app just collects a list of points in an array, does a little bit of cleaning (for example points that are very close to each other) and then sends one G01 per point.