mstrens / grbl_controller_esp32

grbl controller for esp32
174 stars 76 forks source link

Temporary force USB mode #30

Closed thijszijlstra closed 3 years ago

thijszijlstra commented 3 years ago

Is it possible to temporary force USB mode so I can use the CNC without a working touchscreen? I'm waiting for a replacement and need to use the CnC asap.

mstrens commented 3 years ago

Yes, it is possible. In the .ino file, there is a line with: // printing status uint8_t statusPrinting = PRINTING_STOPPED ;

Change it in // printing status uint8_t statusPrinting = PRINTING_FROM_USB ;

Oleg9965 commented 3 years ago

Hello! I really like your project. Is it possible to rotate the image by 180 degrees.

mstrens commented 3 years ago

Normally it is possible to rotate the image. In file draw.cpp you have a line with tft.setRotation(1);

You can try to replace 1 by 3.

Oleg9965 commented 3 years ago

Thanks!