Nicolai Shlapunov
Nicolai Shlapunov
Most cheap 3D printers has area of 20x20 cm (7.87x7.87 inch) It would be nice to have version with short barrel that can fit into that area.
I noticed that system allow to boot if SwB in upper or middle position without warning. Probably it should show waring in this switch in the middle or bottom position...
This is not a good way to do such conversion: `uint8_t r = (color & 0xF800) >> 11;` `uint8_t g = (color & 0x07E0) >> 5;` `uint8_t b = color...
Currently ioSender can generate code for turning and parting. No facing operation. It should be the same tab as turning, but g-code should do Pass depth steps on Z axis...
Looks like in some cases backlash compensation can cause position drift. My machine has imperial balls crew(_5.08 mm or 1/5 of an inch_), my motor set to 4000 micro steps...
Description for CMD_STOP says: > 0x19 (stop) is similar to the legacy 0x18 (reset) but does not perform a warm reset of the controller leaving more internal states intact. Which...
The main thing about jogging that "_Jogging command do not alter the g-code parser state in any way_". Unfortunately jogging acts as G1 command. It would be really nice if...
When G7/G8 is send, X DRO changes from Radius/Diameter to some "junk" value, then it changed to correct Radius/Diameter value. I suspect it happens because WCO does not reported with...
Hi @terjeio, I would like to add support for this board: https://github.com/grblHAL/core/discussions/406 > The listed changes cannot be added to the current map file without breaking backwards compatibility, so you...
Is it possible to add some bit in configuration to switch between rapid/regular motion for the backlash compensation? Now for backlash compensation only the rapid motion are used: > pl_backlash.condition.rapid_motion...