Main screen missing durring print
When I am printing from SD the main screen (the screen with 4 different groups) in no longer an available screen to view. When I turn the encoder the other screen will show up (printing time, location, temps), but the main screen is gone. It appears that the "status screen" that only shows the percentage done takes the place of the main screen. Is this normal?
Here is the screen I am talking about that is missing while printing. https://i.imgur.com/r8QybP4.jpg
Here is the screen I am talking about that is missing while printing. https://i.imgur.com/r8QybP4.jpg
Comments
if(menuLevel == 0 && menuPos[0] == 0 ) {
if(Printer::isPrinting()) {
replace Printer::isPrinting() with false and it should always show the normal design.
This is because the menu system is static and we can not dynamically add a page. So it got replaced by the view.
In V2 we plan a better lcd system that is more flexible, so I think then you will be able to switch between views.
if(menuLevel == 0 && menuPos[0] == 0 ) {
if(false) {
First one:
if(Printer::isPrinting()) {
Second one:
if(Printer::isPrinting()) {
Just to try:
With just the bottom one changed to false it went back to default as if I had changed nothing.
With just the top one changed to false it went back to default as if I had changed nothing.
isPrinting in that function. I count it 3 times, so all of them must be replaced by false.
In version 1.0.3 somewhere around line 2070 in ui.cpp, changing as above seem to remove the "progress" screen and revert to the default info display during printing
Tried all the above, no good.
Can anybody write down xactly what I shall type down into the ui.ccp file in Arduino.?
Thank you