Georg99
Ramps1.4 + FullGraphicSmartController + Repetier 0.92.9 + Host V2.0.1
About
- Username
- Georg99
- Joined
- Visits
- 89
- Last Active
- Roles
- Member
Comments
-
I finally misused another function: Set Origin. in ui.cpp: (to write all in one line with /n as separation did not work) case UI_ACTION_SET_ORIGIN: //if(!allowMoves) return false; //Printer::setOrigin(0, 0, 0); …
-
Thanks for adding it! I found "SD read error" only in this part of the code of in gcode.cpp. So what to add?!: .... if(n == -1) { Com::printFLN(Com::tSDReadError); UI_ERROR("SD Read Error"); // Ki…
-
2) these are the values what I am using already! Should I change these values? (with these values I got the arc with a movement into the -z axes) 3) Hmm but I print with the current values all the time and never get so harsh stops ...
-
ok I understand 1) ok 2.) Is that the repeat time? In the configuration are 2 fields: "Repeat time after: 500ms" and "Reduce repeat time by: 50ms" What values would you recommend? 3) I think the travel values (speed/acceleration) will also be us…
-
Dear Sonic300077, I admire your source knowledge!! Thats over my programme horizont .... Can or Should I include the code somewhere?
-
Now in 0.92 the file looks different so my proposal on top is now different: ui,cpp: ... case UI_ACTION_SET_ORIGIN: if(!allowMoves) return false; Printer::setOrigin(0, 0, 0); break; case UI_ACTION…
-
I am playing around with the Pause Function - and I do not get it to work! 1.If I erase the Pause start script - then the tripod goes to a new position, Z- same as point of pause Y=135 X=0 (I have no idea whrere those values came from!!) 2. If I p…
-
I have now switched to 0.92. I wrote to Pause Start Script: G90\nG1 Z300\nG1 X-99 Y56 and Pause end script: empty With pause it stops at the described position. But with Print Continue it does not start at the position before the Pause! Probably my…
-
I have added in UI.cpp ... break; case UI_ACTION_START: GCode::executeFString(PSTR("G28/nM104 S0/nG90/nG1 Z200/nG1 X-99 Y56/nG1 Z83/M84")); break; case UI_ACTION_ZPOSITION_NOTEST: Printer::setNoDestinationChec…
-
PS: I found in ui_menu.h the line UI_MENU_ACTIONCOMMAND_FILTER(ui_menu_sd_pause, UI_TEXT_PAUSE_PRINT, UI_ACTION_SD_PAUSE, MENU_MODE_SD_PRINTING, MENU_MODE_SD_PAUSED) but I don't come further what to do ...