Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Normally the display controller disables the board sd card anyway. It switches the sd detect and ship select pin to use the one on display. Without controller the pins from board take over. Just make sure only one sd card is inserted also even that …
  • Aufpassen! F werte in G-Code sind mm/min und in der firmware das sind mm/s? Da ist ein Faktor 60 drin! Unterschied ist aber auch manuell sendest du gen G move der wird gespeichert und wie du an dem wait siehst werden weitere befehle erwartet. Da is…
  • Ok, don't see 50°C overshoot here but 20 and it is surely not calibrated correctly. Have you tried M303 to get a proposal for PID values? Which firmware does it use? If you see the output you clearly see that the I part is not working correctly maki…
  • Du kannst den download link anpassen. Als Datei nimm z.b. Repetier-Server-Image_0_93_1_v20.zip - das war die stabile version die mit 0.93.1 kam. Oder du lädst nachträglich eine ältere armhf version auf dem pi herunter (stehen ja auf der Downloadseit…
  • Just tested it. Changed multiplier form 1 to 0.5 saved and did go back directly. I directly saw at bottom x open background caclucaltions. And afterwards the printing time computed was 50% of old one. Please try the same and see if you see it recom…
  • 1600steps/mm * 2000mm/s = 3200000 steps/s das ist sicher mehr als der Controller kann. Wenn also im Cura skript keine Geschwindigkeit oder eine hohe (was ich glaube der fall ist) verlässt er sich auf das limit in der Firmware und das ist zu hoch. Da…
  • In comments I had already the description. Copy here: Adaption to Repetier-FirmwareIf you have eeprom enabled you can do all the calibration without recompiling or changing the code.For the angles just change the Alpha A/B/C values like you would c…
  • You are correct in principle with copy pwm to I. The problem is when to copy. Normally we say PID starts at -20°C of target temperature. When we do that there it will increase I a while until we are at target temperature and is then already higher c…
  • Is this already in your measurement or do you have grid measurement activated and what you see is the bed measurement you afterwards ignore where plane gets calculated? For grid measurement you can not define the left fron and back right point dire…
  • Start value must be 0 pwm. We need to know the way up to t max which limits anything. Increment is ok if we want more stages. Procedure is more or less what I was thinking of. For users with heated chamber there might be another unknown. A hotter c…
  • You are already on the correct position. These values are used for calculations but assume repetier firmware behaviour e.g. for jerk handling. But they are changing constantly in firmwares so real calculation is not possible to follow exactly, but n…
  • Bei moves wird eigentlich auch busy gesendet wenn der letzte Befehl 2 sekunden oder mehr her ist und er sich noch bewegt. Es kann aber sein dass wenn die cpu zu mehr als 100% ausgelastet ist nur noch motorinterrupts abgearbeitet werden und dann die …
  • Ok 1m cable is a lot. Can cause problems with sd reading. Doesn't the board have it's own sd card slot as well. When you use that instead and configure it to use it - I think simple uncommenting the sd card settings in display settings in displaylis…
  • Do you also see that host is sending commands? Does printer respond with "ok" to commands (ack filter disabled).
  • Eigentlich weiß der server das G28 lange dauert und macht kein timeout. Da du mit 4s timeout gut zurechtkommst nehme ich an es ist eine neuere firmware die alle 2 Sekunden "busy: ...." rausschreibt wenn etwas länger dauert. Sollte auch beim homen pa…
  • Are you already in latest version 0.94.3? I have recently added some extra checks to solve this. Happens when the guessed layer height is high or the guessed extrusion amount is very high. So if you extruder at z=20 sever assumes 20mm layer height m…
  • Such things should not be possible when firmware is set up correctly. Firmware has tests for speed limits and controls the moves such that it does not loose any steps. If you send gcode with fast moves that can cause missed steps but then your limit…
  • Letzte image sollte funktionieren. Kommunikationstechnisch ist da nichts bekannt. Wenn er prinzipiell druckt kommuniziert er ja auch mit dem Drucker. Wenn du aber z.b. Firmware aktualisiert hast könnte sich das Format geändert haben. Dann bitte mal …
  • When I last wrote a improbed bltouch for V2 (dows not work on ramps for now) I did not see a incompatibility. It communicates with servo and there is no special support in V1 for it. So all you do is set deploy and undeploy position with M340 in z p…
  • That gives me new ideas. First there is no easy way but we could add a M303 to help calibration. But I see also how stable temperature stays with fixed pwm. So if we measure for 10%..20%..100% and store temperature we could have a base pwm for each…
  • That is a firmware problem and has nothing to do with the server. Marlin sends that message after any G command when it is in that error state. I see have send M119 without errors (because it is a M command). Did you send another g command before? D…
  • This is more or less the same dead time as described in the link you described. Now are the variables not constant e.g. with a strong heater it goes faster up then then cooling goes down. But the hotter you are the bigger is the temperature gradient…
  • Hope somewhere november. It is more or less a bugfix release with some improvements but they are not tested 100% so need some more time to give it the wanted stability.
  • Yes, the ender 3 pro firmware is broken. It reports the temperatures in a wrong format where all chars are doubled and temperatures etc also. So a clear error in firmware. That is not detected by the host. Our next repetier-server release will conta…
  • How did line 42 look before? My version I pushed looked like this: if (zOfficial < Motion1::minPos[Z_AXIS] - 0.01 || zOfficial > Motion1::maxPos[Z_AXIS] + 0.01) { so assume you did not pull and omitted the +0.01 In my debug version it was…
  • Ok here whats going on: void __attribute__((weak)) GCode_32(GCode* com) { bool ok = Leveling::execute_G32(com); if (ok && Motion1::homeDir[Z_AXIS] > 0 && ZProbe != nullptr && !Printer::breakLongCommand) { boo…
  • Not into laser for sure but also the point where it points too is veryyyy bright and bad for eyes! It's not a laser pointer where this is no problem.
  • Ok this is no real problem. No idea at the moment why platformio adds that folder to include directories. It does not exist and is also not used. You will see when you compile you get a success. You can delete the 2 lines from c_cpp_properties.json …
  • New nozzle shoul d in deed not change steps per mm. But it increases pressure required for same speed so you might get more slip and maybe also more temperature to make it flow easier. In CuraEngine configuration is only one page for filament setti…
  • I'm no expert for that and there are many different lasers needing different solutions. So you should consult the docs of the laser which voltage it needs and how to trigger. Mine for example needs 12V permanently and also has a TTL input for 5V to …