Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
This is for protection. Imagine going down repeatedly and then hitting bed because you have no z min endstop damaging your extruder. Going below 0 is normally an error and normally only happens when your printer is not configured correctly. Z=0 sho…
-
Host will prevent this after homing as this is a illegal position. But this is only true for the manual move commands. By hand you can still send G1 Z-1 to go to negative positions.
-
GoToMemoryPosition is what is used to resume position after pause if it was added by firmware. Long delays can be a problem if move buffer runs out. In your case this seems to be intended so no problem here. Also they prevent firmware from answeri…
-
Didn't change autolevel to not work. But after any change you need to redo it. With wrong geometry definition it will not work over complete bed and go up/down depending on dominant error. As you already said with standard degrees it works - so thes…
-
Check the log when it decouples. It gives more informations. Just a config can not show what is wrong. Could be wrong sensor pins or timing to short. Sometimes this happens when fans turn on and start to cool heater instead of filament coming out. S…
-
Modify ui.cpp like I said or alternatively use latest dev version where I added the fix already.
-
I guess it will help if you describe the problem you face. We can not give complete settings - thats why we have tutorials and documentation, but if you have a specific problem at some point we may be able to help.
-
All corrections are added in one move at the end. Make sure to use homing order with preheat to select a good position to enable z probe offsets. There you can also say to go up first. For more analysis I have no data. Still not sure where the probl…
-
No. Mac version has no translations. The windows version only has.
-
Ok, I think I see the error. ui.cpp line 3301 (current dev) should look like this case UI_ACTION_SET_ORIGIN: if(!allowMoves) return UI_ACTION_SET_ORIGIN; Printer::setOrigin(-Printer::currentPosition…
-
Correct usage is something like this G28 G1 Z10 ; so z probe is enough above bed G32 S2 G1 Z10 G33 Afterwards you can see with G33 L0 if the values swing around 0. Also remember that G33 should only be used after geometry is calibrated. If you have…
-
Garbage is normally a result of wrong baud rate. 57600 is very uncommon. Typically it would be 115200 or 250000 baud. Try these just to be sure.
-
Have a look at the log and enable everthing to see if you get any response. One thing with linux is that some baud rates like 250000 are not directly supported. So if your printer uses that it might help to select a ansi baud rate like 115200 baud i…
-
Thanks. I have updated the documentation. You could try with a very old version written when this was true. But apple makes it hard to support old OS. I even can not test it having only one mac. I think now minimum to work is 10.8 or even 10.9.
-
All icons are from a font - most from font awesome, others were designed by us, especially the print specific. So replacing the fonts would change the icons.
-
Only the pro version will integrate the webcam into the frontends.
-
For most controllers you can simply create a additional config in DisplayList by setting teh right board/pin/chipset combination. I don't have that printer/display so I hope someone finds and verifies the combination and sends it to me, so I can add…
-
I see. Starting the print copies the gcode so you can change in editor. But this is not the file you print any more. So there is no way to do this after startig print. All you then can do is hit the pause button manually.
-
The script is in printer settings->scripts along with the other scripts. Yes in pause mode you can use the host manual controls until you hit continue in pause window, then it will go back to where pause started so it continues the print. With M…
-
Do you have a homing between these? Homing will delete all changed origins.
-
DO I understand this correctly? G28 does work as expected G28 Z0 after G28 X0 Y0 does not add offset. Which version are you using?
-
No MacOS 10.6 is too old. If it is already 64 bit you can run repetier-server on it, but even that is not sure.
-
For all host commands you ca write @cmd or ;@cmd No spaces at the beginning! With ; it causes no error if you use it to print over sd or other non repetier software, also these will all ignore it. We did not remove pause in 2.0.5 (lastest version…
-
M600 only works if you have a LCD for firmware. If you don't just add ;@pause Change Filament instead and the host or server will pause. Make sure to edit the pause script to go to good pause place otherwise you get a fat blob where you pause.
-
Not sure where you try to change it - I was talking about firmware solution, so you must edit configuration.h best with config tool. There you have per extruder: /** You can run any GCODE command on extruder deselect/select. Separat…
-
I currently have no Pi3+ so can not say about compatibility. Image is surely before 3+ so that might be a problem if linux kernel does therefore not work. A new image will come with next server release (0.90) which will also use the new debian rele…
-
Sorry, I mixed the types. I meant this case 61: // AD8495 1.25V Vref offset (like Adafruit 8495 breakout board) #if CPU_ARCH == ARCH_AVR currentTemperatureC = ((float)currentTemperature * 1000.0f / (1024
-
Zumindest die Bereichseinstellung ist klar falsch. xmin/ymin 0 ist bei delta die Mitte und nicht das minimum. Daher die Meldung beim Druckstart. Die Verbindungsprobleme sind zu unspezifisch. Temperatur falsch - ok was meldet firmware und was macht …
-
Sure. Firmware has teh possibility to set a start/end gcode for each extruder. Put your command in there. Also conside to add a timeout to M340 so serve gets unpowered after position is set.
-
pt100 on radds might need a different scale. Check extruder.cpp for pt100 - there is a switch to use a different voltage multiplyer (scaled for 3.3v) and it might use the wrong one there.