Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • >QUESTION 1 >I sent G32 S0 and now I generated a mesh for the plane. >At this point, I execute the slicing but when printer starts goes to Z0 and not to Z-2. >So Zmotors compensate probably in the right way but extruder stays to Z0 posit…
  • ToolExtruder1 is the reference, so z offset is 0. So ToolExtruder2 is relative to this height. Positive value means it is higher so when selecting it, it needs to go down. Ideally offset is 0 or you will loose the ditto print function which only wo…
  • Ok. I thought you meant the display on the pi.  2 sides talking over serial can in deed give problems. Especially if one side does not see the changes. So best only to use one of them.
  • Did you replace the 2 lines I told you? Otherwise it is clear it does not work. Actually that is the main difference between 0.92 z homing of delta and the newer one so it should then behave. Copying the full homeZ version from 0.92 might work or n…
  • Homing macht immer 2 tests, das ist korrekt. Er geht beim ersten auslösen zurück und dann noch mal langsamer zum 2. auslösen. Danach kommt halt wie gesagt noch die Korrektur wegen z probe height, bed coating, autoleveling wo keine Prüfung erfolgt.
  • Inoffcial you can replace download link with 0.93.2 and you get the latest RC for 0.94. Hope it is already finished, just running tests now as I made many changes and additions which I like tested a bit more before doing the release. But feel free t…
  • Ja ein bekannter bug. Geh über die top menü leiste da sind die richtig. Im nächsten update ist er dann auch dort behoben.
  • In Endstop.cpp gibt es diesen code: #if FEATURE_Z_PROBE#if Z_PROBE_PIN == Z_MIN_PIN && MIN_HARDWARE_ENDSTOP_Z if (newRead & ENDSTOP_Z_MIN_ID) // prevent different results causing confusion newRead |= ENDSTOP_Z_PROBE_ID; if (!Printe…
  • The endstop output for M119 is correct. With z probe and z min homing it will have zmin always low. Many probes trigger before you are at z min so being the same device we can not have is signal z min as well. You can move below 0. Just send G1 S1 …
  • If you switch to 1.x you better choose 1.0.4dev. In Printer.cpp around line 1500 is homing of z axis: void Printer::homeZAxis() { // Delta z homing bool homingSuccess = false; Endstops::resetAccumulator(); deltaMoveToTopEndstops(Printer::…
  • I think I did not really understand why you need to move somewhere and wait for a switch after probing. Can you explain that? Normally there should be no move after that. That can give problems easily if you do several probes as it changes position …
  • > The sevro and probe  work on G30 though... All use same start script. So what commands did not work and what is the log for them? Also I saw z probe pin is 18 - is that same a Z_MIN_PIN? At least important for z homing.
  • Just removing the display does not change a thing software wise. Chromium is still running. What changes is that a big power user was removed making your power more stable. And since that is known to cause connection problems/hangs it might have hel…
  • You say starting a print crashes firmware and then describe the complete print works to the end? So what is it? You also say it crashes at second line, so what is the content of that line. You should connect to a host and see for the startup messa…
  • Can't say more. Error message is from uploader so has nothing to do with content. It just says the compilation has one value as first byte and the uploaded code another value.  Does old firmware upload if you change any parameter making it differ? Q…
  • Du hast es nicht ganz verstanden. Indem du beides mit gleichem Pin angibst sagst du er soll z probe zum homen verwenden. Das muss sein, weil er sonst das autoleveling nicht korrekt nutzen kann. Evtl. must du sogar die homing coordinaten für Z angebe…
  • I remember having answered this question already somewhere. The slow command message comes from server not firmware so you can not use it. Also server has send more commands when you catch a message so your code would then be added somehwere in the …
  • The offset is only used during probing and afterwards the extruder is selected again. Only command not always doing this is G30 where P parameter defines if that should happen or if more probes follow so you want to omit this step. I don't remember…
  • It just says that uploading did not work. Already the first send byte was wrong. So normally you just retry in that case uploading and hope it was just a communication error. That is why you run verify after uploading.
  • Had another look at your connection.log - looks like it sends the default data on connect and then nothing else gets send. So make sure firmware is Marlin and check different values for DTR/RTS - seems like your board might us eit for flow control b…
  • z-min und z probe müssen identisch sein, es muss aber auch NUR der z-probe angeschlossen sein also kein echter z-min endstop! z-min wird dabei immer L melden aber für z-homing wird z-probe verwendet. Grund ist das der induktive sensor bereits vor z=…
  • The problem of atmega1284 is that it only has 128kb flash memory. The error message want's to tell you that your compiled firmware is now bigger then available flash memory.  files/windowsapps/arduinollc.arduinoide_1.8.33.0_x86__mdqgnx93n4wtt/hardw…
  • Ja manuell bewegen immer langsam. Es gibt auch zwischensockel mit Dioden die back emf verhindern. Regulär ist das Getrennte ansteuern nicht möglich. Man kann die Treiber aber doppelt einrichten als extra motor driver und dann über G20X steuern. Sie…
  • > gives server pro 0.93.1 bacchus 15 ,printer blinking from "on line" to "idle" indefinitly waiting will not help here. That means your connection settings in server are wrong. Make sure firmware type is selected correctly. Then check baud rate a…
  • I hope you mean the case where Marlin tells M999 is needed. I found in deed that the line in marlin.xml contained (.*M999.*) but it should have been (.*M999.*) since fatalStop is no known response. fatal instead would stop the print at that posi…
  • Es gibt 2 möglichkeiten. In beiden must du ein Skript zum schalten in extcommands.xml eintragen wie es in advanced configuration beschrieben ist. Lösung 1: 2 Skripte zum ein und ausschalten die im menü erscheinen. Der lichtbutton wird dabei nicht f…
  • Guess release is next week. But should work none the less. So question 1 is does the server work on it's own with gui etc and show pro version? Did you do a reinstall or so? Then the servers uuid and apikey might have changed and you need to new ap…
  • Yes strange move. Looking into homeX after doing the back move there is one for selecting current extruder: #if NUM_EXTRUDER > 1#if X_HOME_DIR < 0 PrintLine::moveRelativeDistanceInSteps((Extruder::current->xOffset - offX) * X_HOME_DI…
  • It is more or less finished. Just some tweaks to mak eit work on more armv7 processors and testing the new image then it will be published. So hope next week to be through with all this.