QuotediabolusUmarov Falls ich es wirklich so machen muss und das Heartbreak das Gewinderöhrchen ist, wie kriege ich das vom Heatblock runter? Ich habe ja keinen Angriffspunkt! Darauf sitzt nur eine Mutter, womit man den Heatblock wohl in der richtigen Position halten kann. Zweite Mutter und kontern.von enif - Extruder, Hotends & verschiedene Materialien
Du kannst entweder COM und NO (normally open) oder COM und NC (normally closed) anschliessen, wobei letzteres den Vorteil hat, bei Kabelbruch oder irrtümlichem Rausziehen des Ensstopkabels den Endstop zu triggern. Beim RAMPS kommt COM an den "-" Pin und NC/NO an den S-Pin (ja nicht an den "+"-Pin, sonst Kurzschluss!) Deine Firmware musst du dann entsprechend konfigurieren, in Marlin geschieht divon enif - Elektrik & Elektronik
QuoteHugoW I don't have the end switches plugged in yet. Hugo Might that be part of the problem? Try M119 to see what Marlin thinks about your endstop status...von enif - Firmware - Marlin
QuoteCopperhead Empfehle bitte nicht solche Sachen. Sicherheitsfunktionen abschalten ist immer eine blöde Idee. Dein Heatbed macht vielleicht bei 120°C schlapp, das ist nicht bei jedem so. Von meinem kann ich sagen, dass es da locker drüberheizt. Wenn ich es richtig verstehe, so ist auch nach dem Auskommentieren von THERMAL_PROTECTION_BED das Bett immer noch durch BED_MAXTEMP gegen eine Überhitzvon enif - Software
Ich hatte ähnliche Probleme nach dem Update von 1.03 auf RC8. Schliesslich habe ich in Configuraltion.h die Zeile #define THERMAL_PROTECTION_BED auskommentiert, da hatte ich Ruhe. Im Gegensatz zum Hotend ist ein Überhitzen vom Heizbett kein wirkliches Problem, da es bei 120C schon recht am Anschlag läuft. Aber man kann natürlich auch THERMAL_PROTECTION_HYSTERESIS und THERMAL_PROTECTION_PERIODvon enif - Software
You need to apply projection(){...} to your 3D object in order to obtain a 2D object which can be exported as DXF.von enif - OpenSCAD
Quotewersy Pitch ist nicht Distanz zwischen irgend etwas. Pitch ist Steigung. Ich glaube du verwechselst "pitch" mit "lead", siehe z.B. hier.von enif - Elektrik & Elektronik
Wie weit bewegt sich die Mutter auf der Spindel mit einer Umdrehung? Falls es 8mm sind (d.h. 4 parallele Gewindeläufe im Abstand von 2mm), dann stimmt der Wert von 400steps/mm (3200steps/8mm).von enif - Elektrik & Elektronik
Eine Standard M8 Spindel sollte 1.25mm Steigung haben. Kann es sein, dass du eine 8mm Spindel mit 8mm Steigung und 4 Läufen hast? Dann wäre der Pitch (Distanz zwischen 2 Rillen) auch 2mm, aber mit einer Umdrehung kommst du 8mm weit. Würde dann auch mit den 400 Steps/mm passen...von enif - Elektrik & Elektronik
I don't know if this is of any help... But I remember vaguely to have had a similar problem a while ago with my Sanguinololu and IIRC arduino 1.6.5. It turned out to be a problem with the baud rate. I had to modify the corresponding speed parameter in the Sanguino's boards.txt from 115200 to 57600, then I could upload correctly.von enif - Firmware - Marlin
Quoteskysurfer hmmm ... was sind FR4 Streifen von alten PCBs ? Wie temperaturbeständig sind die ? Halten die 130°C kurzfristig (ca. 2 Std.) und 110°C langfristig (also ca. 14 Std.) aus ? FR4 ist das Material aus welchem die meisten PCB gefertigt sind, also z.B. auch die normalen MK2a/b Heizbetten. Die Temperatur sollte da also kein Problem sein.von enif - Druck- und Heizbetten
Warum statt leimen nicht einfach unter die Korkmatte einen steifen äusseren Rahmen montieren? Ich brauche dafür 4 schmale FR4-Streifen von alten PCBs mit passenden Schraubenlöchern, so dass das "Sandwich" Rahmen/Kork/Heizbett von den schon vorhandenen Schrauben der Heizbetthalterung zusammen gehalten wird.von enif - Druck- und Heizbetten
I think that the problem is when you have a short: Then you will have the full 24V over the fuse, and that's when it gets dangerous and the fuse can catch fire before it traps.von enif - RAMPS Electronics
You're welcome! I'm glad to know that you got it working now. :-)von enif - Controllers
In Conditionals.h just comment out the line #define REVERSE_ENCODER_DIRECTION and in Configuration.h uncomment and adjust the values of #define ENCODER_PULSES_PER_STEP 1 #define ENCODER_STEPS_PER_MENU_ITEM 5 too your liking. Hope that helps to resolve the remaining problems.von enif - Controllers
Ok, I understand. So it's probably best, I simply show you my changes for making my TINYOLED work on Marlin 1.1.x. The added lines are those that are indicated with a "+", the other lines are just showing the context where the changes were made. 1) Additions to Configuration.h % diff -p Configuration.h{.ori,} *** Configuration.h.ori 2017-05-19 19:56:42.864881489 +0200 --- Configuration.h 2017-von enif - Controllers
Somehow your last message does not fit well with your initial version, where you use U8GLIB_SSD1306 and define it in Configuration.h. Where does SSD1306_OLED_I2C_CONTROLLER come from and where is it defined? And the way you are you using #elif seems rather suspicious to me. Why not just #if and use #elif to replace the following #if ?von enif - Controllers
Please post the compiler output, so that we can see the error messages.von enif - Controllers
Are you really sure that you have U8GLIB_SSD1306 defined? And not U8GLIB_SH1106? I use the latter one for the 1.3" displays, the former for 0.96" displays.von enif - Controllers
Avec OpenScad, tu pourrais importer ton fichier STL et y faire une "Minkowski difference" avec un petit cube dont les cotes sont 2x l'epaisseur de la paroi desiree (ou une petite sphere, mais les temps de calcul vont etre encore plus longs), et ensuite soustraire ce resultat (qui est le "trou") de l'objet original. Style: difference(){ import("myobject.stl"); minkdiff(){ import("myobvon enif - RepRap Groupe d'Utilisateurs Francophone
... #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 4000, 500 } ... #define DEFAULT_MAX_FEEDRATE { 300, 300, 5, 25 } ... Mit 5mm/sec und 4000steps/mm verlangst du für die Z-Achse 20'000 steps/sec von deiner Mega/RAMPS Kombination. Gemäss Wiki ist das Maximum aber bei ca 10'000steps/sec. Probier mal mit 2.5mm/sec, dann sollte es eigentlich gehen.von enif - Software
For someone being able to help you, you need to provide more specific information on the hardware/firmware/software setup you are using. Which controller? Which firmware on it? What LCD display? Have you checked the voltage on the 5V rail? Any change when switching from USB to power supply? Which speed and accelleration settings for motors? Have you tried lowering speed and/or acceleration vavon enif - Controllers
It's simple: The wires are a resistors on which the voltage drops proportional to the current according to Ohm's law. so the voltage remaining on the LEDs that are connected through the same wire as the rest of the printer will diminish as the current used by the printer increases. So, as o_lampe said in his post, using thicker and/or shorter wires (to decrease their resistance) will reduce thevon enif - RAMPS Electronics
I still use an older version of Marlin, but from what I read, the blinking coordinates just mean that the corresponding axes have not been homed yet. So that part would be normal in your case. As for the non responding rotary encoder, I assume that there is some problem in the pin assignment. Check out your values for BTN_EN1, BTN_EN2 and BTN_ENC (probably defined in pins_RAMPS.h) and verify tvon enif - Controllers
Are you sure to really have two stepper drivers for the Z-axis, not just two stepper motors using the same driver either in parallel or in series? If you have two Z-motors but only one stepper driver, you should not set Z_DUAL_STEPPER_DRIVER.von enif - Firmware - Marlin
AFAIK the USBtinyISP does not support devices with more than 64kb flash, so it doesn't work with the ATmega1284.von enif - Firmware - Marlin
I had this problem as well. It is due to the construction of the LED stripes which have always 3 LEDs and a current limiting resistor in series. Given that each LED needs about 3.5V, this means that there is only about 12V-3*3.5V = 1.5V over the current limiting resistor. Thus, even very small variations on the voltage (due to PWM changes in the load) will cause large variations in the currentvon enif - RAMPS Electronics
I don't use Repetier firmware, but may be this thread will help you...von enif - Controllers
Les LEDs (et resistances) sur le lit sont optionnelles et ne touchent pas son fonctionnement. Cependant c'est pratique d'avoir un indicateur visuelle qui montre l'activite de chauffage du lit. Mais tu peut tres bien mettre un cable avec une resistance (entre 1k et 10k selon la luminosite desiree) en serie avec une LED, branche a l'autre bout directement sur la sortie "lit" du RAMPS, en parallelvon enif - RepRap Groupe d'Utilisateurs Francophone
Ich hatte kürzlich das gleiche Problem und habs wie folgt gelöst: Hab einfach eine alte Nozzle vorne platt geschliffen und mit einem Senkkopf-Bohrer angebohrt, so dass eine Vertiefung entstanden ist, die nun das Filament "einfängt":von enif - Mechanik