mstrens / grbl_controller_esp32

grbl controller for esp32
174 stars 76 forks source link

When I set A axis=0, it becomes Z axis=0. #37

Open viewsat opened 3 years ago

viewsat commented 3 years ago

When I set A axis=0, it becomes Z axis=0. see youtube https://www.youtube.com/watch?v=t4HGG-T2hoM

mstrens commented 3 years ago

Thanks for reporting the bug. There is a copy/past bug. In file config.h, there is currently:

define _SETA_STRING "G10 L20 P1 A0\n"

It should be

define _SETA_STRING "G10 L20 P1 Z0\n"

I will fix it in next update but you can easily fix it immediately in your version

viewsat commented 3 years ago

Thanks for reporting the bug. There is a copy/past bug. In file config.h, there is currently:

define _SETA_STRING "G10 L20 P1 A0\n"

It should be

define _SETA_STRING "G10 L20 P1 Z0\n"

I will fix it in next update but you can easily fix it immediately in your version

I change config.h follow your instructions, no problem.

Before modification => #define _SETA_STRING "G10 L20 P1 Z0\n" After modification => #define _SETA_STRING "G10 L20 P1 A0\n"