Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Just tested with my due + RADDS board. Made a 5 mm move right then left and measured X axis. Result is this: https://imgur.com/a/3hu1JPL you see I have no spikes/switches for dir here. This is even with SLOW_DIRECTION_CHANGE 1 @AbsoluteCatalyst …
-
Debug level M111 is set fixed in Printer.cpp uint8_t Printer::debugLevel = 6; ///< Bitfield defining debug output. 1 = echo, 2 = info, 4 = error, 8 = dry run., 16 = Only communication, 32 = No moves But normally you do not want echo on. The pro…
-
Regarding language - you can remove the language selection. Currently only english is supported.
-
No need to disable eeprom. For STM32 we fake an eeprom by storing it into flash memory after your firmware program. EEPROM_MODE 0 would disable it if you do not want it. You should be 16mm away from x min. That is the offset of the right extruder. …
-
In config menu is a eeprom editor which shows all values stored in eeprom.
-
Grundsätzlich kannst du die PIs tauschen. Er wird dann die Lizensierung neu aushandeln, sollte aber kein Problem sein waren ja beide vorher auch aktiv. Solange die Blitze weiß sind ist alles ok mit dem Strom - wir fragen ja linux ob es zufrieden wa…
-
Is firmware set correctly and not on repetier-firmware? Can you show communication in console when no filters are applied? There you see best what is going wrong.
-
You need to move to the h1-h4 position before probing! Also you need to activate probe only for first and deactivate for last test. move to h1 float h1 = Printer::runZProbe(true, false, Z_PROBE_REPETITIONS, true); movto to h2 float h2 = Printer::…
-
messages gives you the list of open messages in our gui if that is the question.
-
"pauseState":0 in listPrinter is pause state. Values are: 0 = unpaused, 1 = paused, waiting cooldown, 2 = cooleddown (if enabled), 3 = heating, 4 = heated, waiting for continue, continue. Messages just contains a hint with unpause/remove link. me…
-
Just use our pi image and install klipper same way and you should be able to connect to it. Or use linux and should work the same I think.
-
Not sure if klipper works without a pi. Installation is the same for pro version. Actually only difference is that you enter a license code to activate extra features, but does not change login problem or anything else.
-
Stellt sich aber die Frage wie viele User immer 10 mal den gleichen druck auf allen identischen Druckern am pi geichzeitig starten wollen. Passiert vermutlich nur bei Massenproduktionen denke ich. Muss ich drüber nachdenken.
-
Recv:12:07:53.740: SelectTool:0Recv:12:07:53.740: Axis failed:1Recv:12:07:53.740: Warning:Move to illegal position prevented! Position should not be trusted any more! Nice you have the old version where the debug output was forgotton. The axis fail…
-
Ok I see we receive responses from firmware but firmware is not receiving anything. Try changing RTS or DTR to and with the opposite state when finished. So high->low gets low->high and see if that helps. Some drivers use this as hardware flow…
-
After homing Motion1::setAutolevelActive is called: void Motion1::setAutolevelActive(bool state, bool silent) { if (state != autolevelActive) { autolevelActive = state; updateRotMinMax(); updatePositionsFromCurrentTransformed…
-
Changing microstepping does have any effect on power so that would be strange. When you enable printer make sure you can move all axes without big force. If one is blocked by motor it has set enable signal wrong and would disable power for moving in…
-
After installation there is no login required except when you have defined a user. Then the gui asks for user and password. See https://www.repetier-server.com/knowledgebase/password-forgotten/ on how to reset all users so you have no password requi…
-
Did you after saving also switch the filament profile in the right tab - that decides which profile to use not what you have selected in the left side.
-
You have commands/ack disabled and M105 filter enabled in console. That way you only see the non standard messages and have no idea what is going on. What I see are just warnings - these happen when there is a communication error that got detected.…
-
SLOW_DIRECTION_CHANGE 1 makes a timer interrupt call pause = 1/STEPPER_FREQUENCY seconds. This is for drivers that don't see the changed direction when step follows very quickly. The drivers datasheet normally has a timing diagram on required times.…
-
Only our Repetier-Server can communicate with klipper. Read also https://www.repetier-server.com/knowledgebase/klipper/ for a special problem with klipper permissions. You install all this on your pi (assume klipper still only works on pi). You ca…
-
I guess you found your problem. Of course it is only send to the ws that send the active printer and sendMoves command. Why should other clients get these informations they never asked for? Also the session is only really valid as long as you are co…
-
There is also a command to deactivate autolevel: - M320 S - Activate auto level, S1 stores it in eeprom- M321 S - Deactivate auto level, S1 stores it in eeprom So it is in deed coming from the transformation. So only question is where and why. I thi…
-
Thanks for the insight. 25 minutes is in deed a long time.You might reduce it considerably if you reduce min bed height. When you do it regularly 2mm might be enough and time comes linear with that value more or less.
-
In theory it should send them. It has 2 filters so it needs sendMoves and a default printer you have set with activePrinter. Can you show your websocket communication where you send these 2 commands. Only reason I see so far is that there is an erro…
-
Nein läuft auch ohne. Es kann mal probleme mit dem Verbinden geben aber dann macht du den Drucker aus oder resettest den manuell wenn er eine reset taste hat. Aber normalerweise verbindet er damit genau so gut.
-
Das Blitzsymbol ist immer zu sehen bei der aktuellen Version (spätestens nach einer Minute). Die Frage ist nur ob linux Unterspannung bemerkt hat oder nicht. Die Amperezahl des Netzteils sagt leider nichts darüber aus ob dies passiert. Das Problem i…
-
Could you try if the problem also exists if autolevel is disabled? Then I know I have to look into the z correction where I think the problem now lies. Z_PROBE_BORDER is used to measure testable area on bed. Lets say you x is -65 ... 458 but bed i…
-
G29 is not really a good invention in my opinion. It just takes average height. If it should be physically leveled and you do not want software correction that is the only reason to use it. But if it is leveled you can also just ignore it and home w…