RAyWB

About

Username
RAyWB
Joined
Visits
2,123
Last Active
Roles
Member

Comments

  • if your axis travels 50 mm instead of the wanted 10 mm you have to recalculate the steps per mm.for example your XAXIS_STEPS_PER_MM 10240 means (10240 steps/ 50mm) *10mm = 2048 steps so the correct setting is #define XAXIS_STEPS_PER_MM 2048
  • Hast du das einfügen von video=DSI-1:800x480@60,rotate=180 schon versucht? hab leider kein solches display sonst würd ich das mal durchspielen was raspberry da schreibt
  • bei der menge von displays auf dem markt ist es schwierig bzw nahezu unmöglich alles abzudecken.Im Zweifelsfall versucht man halt das was der Hersteller sagt.funktioniert es denn damit?
  • https://www.raspberrypi.org/documentation/hardware/display/ scheint verschiedene Modi am pi4 zu geben,Auszug aus der Seite: To rotate by 90 degrees clockwise, add the following to the cmdline, making sure everything is on the same line, do not add…
  • don´t know about any support for this.just found the information i posted using google ;-)
  • may be this helps : http://thrinter.com/boxzy-unboxed/ think the necessary values are shown
  • take a look at uiconfig.h that also contains explanations. otherwise look at DisplayList.h  if a predefined controller works for you,some of them use buttons instead of encoder
  • guess this is not correct #define EXT0_ENABLE_PIN ORIG_E0_ENABLE_PIN but: Firmware counts from 0 so 3rd extruder is E2 try to change #define EXT0_STEP_PIN ORIG_E3_STEP_PIN#define EXT0_DIR_PIN ORIG_E3_DIR_PIN#define EXT0_ENABLE_PIN ORIG_E0_ENABLE_P…
  • guess you use  ramps/mega combination.Question: original ArduinoMega  or plagiate with CH340 usb Converter? in tat case it might be a driver problem. How is it powered? 12V? 24V? I remember having trouble with a plagiate Mega due to overheating the …
  • merkwürdig. dann müsste das verfahren von 0 auf zmax ja anderthalb minuten dauern.kann ja theorethisch bei G1 moves zu timeouts führen.kannst ja einfach testen wenn Du von z=1 nach z=150 fährst. sende einfach mal G1 Z1 F120 und dann G1 Z150 F120 ob …
  • mit communication timeouts hatte ich mal probleme mit nem china due.nutzt du den nativen oder den programming port? aber deine z feedrate ist definitiv zu gering.geh mal auf max 30 und homing 20.warum unterschiedliche x und y-feedrates?
  • das mit den timeouts ist mir nicht klar, da kann repetier sicher mehr dazu sagen. mich würden eher deine Firmwarewerte für die feedrates interessieren, Du hast oben geschrieben das homing nach z-max dauert 45 sekunden. das erscheint mir sehr hoch.in…
  • sorry , hatte es als 2000 gelesen, dann stimmts natürlich mit 2.000 =F120 habe bei meinem corexy eigenbau die max z feedrate auf 20 (komme bei 3600 steps/mm aber auch nicht über 35).denke es wäre ein wert um die 50 realistisch ansonsten kannst du im…
  • 2000 (mm/s)  in der Firmware entsprechen F120000 (mm/min) im gcode
  • what you mean with 3mm respectively 1.75 mm is filament diameter , not nozzle diameter. follow this to calibrate your extruder : https://all3dp.com/2/extruder-calibration-6-easy-steps-2/ set flow rate to 100% to do this!!
  • looks like nozzle diameter is not correct in slicer.if its set for the old (bigger) nozzle it will not give correct result for the new (smaller) nozzle
  • what about the reset,sleep and enable signals in your test setup?and what drivers do you use? enable should be tied to gnd , sleep and reset to VDD.if you leave them open they might do unwanted things
  • search for: #define ENDSTOP_X_BACK_ON_HOME 2#define ENDSTOP_Y_BACK_ON_HOME 2#define ENDSTOP_Z_BACK_ON_HOME 2 these are the settings for moving back  from endstop after homing.guess you have set them to 0 the back move when homing is this:(used duri…
  • x offset -108mm ? which offset are you talking about? may be a sketch would be useful
  • wenn x oder y nicht gehomed sind führt er ein homing von x und y durch.siehe hier: void ZProbeHandler::activate() {    if (activated) {        return;    }    // Ensure x and y positions are valid    if (!Motion1::isAxisHomed(X_AXIS) || !Motion1::is…
  • nothing attached... you have to upload the files to something like pastebin, googledrive ,etc.if youre afraid to do so i´ll send you my e-mail  by pm
  • https://github.com/Aus3D/RUMBA32/blob/v1.1/Source/Outputs/RUMBA32_v1_1A_PinoutDrawing.PDF https://github.com/Aus3D/RUMBA32/blob/v1.1B/Source/Outputs/RUMBA32_v1_1B_PinoutDrawing.PDF as far as i can see there are no changes on the endstop inputs. I…
  • i know.. it´s finding the tree in the forest;-)
  • the Space you're looking for is inserted automatically , so no need for space bar button
  • referring https://docfirmwarev2.repetier.com/config/endstops ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false) should do the trick. false  = homing to min , true =homing to max so as z is homing to max it´s working correct. if y is homing…
  • @Repetier why not simply allow or not allow M114 for server by selecting , for example as switch in servers manual control settings.from my point of view it would be a nice temporary solution , especially for cnc use
  • as you wrote above: i guess you fried the Driver. DRV8825 die immediate when mounting in wrong direction.fried myself around 10 pieces the last two years while "ich probier kurz"
  • may be this helps : I remember i had similar problems on Win10 , but as it´s long ago I´m not shure what the solution was.As zadig is still present on my computer i think this was the solution BTW i use RUMBA32 from aus3d 1st version , no plagiate
  • i know it´s intentional , i mentioned it as "trap" as some users expect eeprom being updated by upload as i guess ;-)
  • @Repetier : Isn´t there still the EEProm Trap when reconfiguring and Uploading Firmware? I still change #define EEPROM_MODE 1 to #define EEPROM_MODE 2 when reuploading with new values.and the next time uploading back to #define EEPROM_MODE 1 so EEPr…