Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Thanks for the hint. So I'm just glad my 3 displays are still working:-)
-
Nope, first we make the cloud function then slicer.
-
This is no error screen, it is a pause screen. So you hit pause button while printing or firmware had send requestPause: for some reason. Activate the log (easy mode off) and check what is exactly going on. Full log will surely contain more informat…
-
No it is not possible, only the other way around. The aims of the format are completely different. STL is a boundary representation and gcode is the machine control language to approximate the shape with given constraints and options.
-
I read it correctly. I said there is no transfer mechanism, but IFF you use repetier-firmware the server would get most values from the wizard a sit can query firmware for data coming from it.
-
Please see exactly what the log states. I think this is host wanting to read sliced gcode, but cureengine did not produce any due to an illegal value, often layer height > 0.8 * nozzle diameter.
-
Ok, would also not have guessed on a too low setting. Normally you get troubles for too high. Too low only causes not moving, but it did at least at the start. Glad you solved it.
-
Sometimes it is a difference if you power up or reset as during reset the system is all well powered. Do you have same problems after a reset as well? In that case a increased pause before initializing sd card may help.
-
Interesting extension to my new pwm system for V2. I could there solve the min pwm with a general class that inputs a normal pwm and makes it min value sensitive. I also checked the same pin for all problem and this also gets solved with the new sys…
-
Tested Mega2560 + GLCD and it started normally with or without sd card. No components connected and no TMC2130.
-
if(maxJerk < 2 * minimumSpeed) {// Enforce minimum start speed if target is faster and jerk too low maxJerk = 2 * minimumSpeed; Com::printFLN(PSTR("XY jerk was too low, setting to "), maxJerk); }guess that is the error …
-
If you run repetier-firmware it will fetch most variables from firmware if you use the wizard or later rescan parameters in config. But the values stored differ between the software so there is no way to do this automatically, sorry.
-
When uploading pins are not really initialized so on different boards strange thing happen. RAPS128 enable on low signal so are e.g. on at start until gettinig initialized. I have a printer where fan gets full power on upload. Search for …
-
"but where in the online config tool?" In tools section enable "Enable advance algorithm (not stable) (USE_ADVANCE)" Firmware can not detect manual actions to extruder for your grip problem, so that is not solved automatically:-) The only change …
-
Combined with inverting motor direction there are even more combination for core xy. In the end it is just a case of testing these combination until it moves in the right direction. Or you move motors by hand and see what combination moves in which …
-
Ok, I see this is a hard one. All correct commands and firmware responsive but doing not what is expected. "ok" is send when command is received, not executed. This reduces latency and increases througput. "wait" appears if buffer is empty for at l…
-
Actually you should store your calibration values and set them exactly the sam ein new firmware. Due and AVR version are 100% identical except hardware handling and available memory. So with same correction values I expect same result. Removing fea…
-
S value can vary between 0 = 0% and 255 = 100%. As far as I know all firmwares use this scale.
-
I know what you mean. In fact only fan 1 is supposed to be a cooling fan and Fan 2 should be used for other uses. That is also why we have only one field for fan with exact timings. So a better solution would be to have a pin definition for each ex…
-
In 90% it is the cable, yes. It can be a defect on board/processor or lcd board as well, but that is not so often. If you have replacement devices it is easy to find out. Of course firmware is also possible, but since it worked and you did not chang…
-
Repetier has also advance, but please do not use quadratic advance, that is not good and removed in next V2. - M232 - Read and reset max. advance values - M233 X Y - Set temporary advance K-value to X and linear term advanceL to Ya…
-
That is normally a problem with gcode you send. Before moving an extruder you normally reset position using G92 E0 otherwise it uses E value from last active extruder. So if E0 was at 100 you switch to T1 and send G1 E1 it means 99mm backwards due t…
-
Problem is that a mega2560 ha sonly 8kb ram for all the buffers. So with deltas you can reduce subsegments per move to increase the number of moves buffered. That of course only works for small moves otherwise you need more lines to store move. For…
-
Ok, points 1,2,3,4,6,7,8,9 are useless to the problem. If you see busy:processing the connection is working well, only that the firmware has informed host that it is busy doing something, so please do not send anything else and do not time out. The…
-
Make sur eping pong is disabled. Then one undetected "ok" will not halt everything. You should also check if you compiled firmware to include line numbers with "ok" so host can detect missed "ok" at a later time fixing the error on the fly instead …
-
If it worked flipping it is bad idea if you mean direction added. These cables get contact by cutting the pins through the plastic. If the cable is not positioned 100% correct during this it can have bad contacts. If you have a multimeter you could…
-
New release is coming may. Is that the temperature issue not updaing due to invalid numbers? Not 100% sure what bug you need.
-
Normally extruder 0 is teh reference (offset 0). Then probe position is relative to this. positive y means behind the extruder negative before extruder. You measure where the current active extruder is and that is the move while probing that you see…
-
I think you have a different microstepping set on extension board. If I remember right the extension board has 3 pins you can set with M42 to change microstepping. Add these commands in the firmware startup script so they get initialized correctly.