Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Encoder will work also you only need one of the phases. We count steps of extrusion between signal changes. If they increase e.g. to 200% we can slow down extrusion and above 300% increase start filament change.
-
Ok, on first sight it looks the same just failing in server version. Is this a new phenomen for the server or the first try you use server with that printer? What board das the kossel use? If it is a malayan board try RTS High, DTR Low. Also pleas…
-
It is mm/s and mm/s^2
-
On which os is that? If linux it could be that an other software is also connected to same port. Since you can see answers the baud rate is more or less ok except 16:50:09.215 : Unknown command:N1 M0 J0.00 R0.00 L0.00 indicates that something in se…
-
Mit den richtigen Fuse Einstellungen kann man auch ohne Bootloader starten. Dann kann man aber nur noch mit einem ISP Gerät neue Versionen hochladen, ist also nicht so sinnvoll wenn man mal Updates hat. Versuch es doch mal bitte am PC mit der IDE d…
-
See ui.cpp #if FEATURE_RETRACTION case UI_ACTION_WIZARD_FILAMENTCHANGE: // filament change is finished Extruder::current->retractDistance(-increment); Commands::waitUntilEndOfAllMoves(); Extruder::c…
-
Am kompilieren liegt es definitiv nicht, problem ist ja mehr das avrdude sich nicht mehr mit dem board verbinden kann. Wobei wir avrdude auch seit dem es dabei ist nicht aktualisiert haben. Wenn es früher funktioniert hat nehme ich mal an das der B…
-
With melzi you need to go the V1 way. It's not fixed but maybe avr in V2 will only support 2560 version as firmware is quite big.
-
RETRACTION_SPEED and RETRACTION_UNDO_SPEED already can be set independently. Uses same speeds as G10/G11 so values are taken from these settings.
-
You can hack it into V1 if you select coreXZ and change the computations when FAST_COREXY is defined. It is a bit hacky. If you use a supported 32 bit board e.g. RADDS you can already switch to V2, see https://docfirmwarev2.repetier.com There is a p…
-
Processors have internal pullup resistors. All you need to do is tell firmware in configuration that you want a pullup activated. In config tool this would mean selecting a mechanical switch. Combined with ALWAYS_CHECK_ENDSTOPS 1 it should always te…
-
Why do you have a resistor at all? Pullup is due internal. So all you do is connect gnd - switch - due pin.
-
I can reproduce this error if height is between 401 and 458 pixel and width is 800 pixel. Will investigate why and try to improve for the future releases. It also depends a bit on the language. In english the is less prone to this error. So I guess …
-
You use a pullup resistor. With normally closed this gives low signal. Without you have noise or gnd and switch will not be reliable. With pullup you have 5V or GND if connected as defined levels. Pullup is 50K or so.
-
Make sure to save the new filament settings and also that the setting is selected on the right side. It might be that you modify a different filament then shown to the right and that would still use the old values.
-
In config tool Mechanics->JAm Method mist be signal gets High or Low depending on how the switch changes. Then in extruder settings configure pin and pullup that is all you need to do. Then set Jam Action to LCD or request pause from host/server.
-
Hast du denn früher damit uploads gemacht? Hier http://www.kinder-technik.de/ender-2-3d-drucker-kit-aus-china-gut-und-guenstig/ steht das der ohne bootloader kommt. Damit würde es nicht klappen bis ein bootloader drauf gespielt ist. Grundsätzlich k…
-
Just to be sure connection is really established, the icon for connection gets green and if you go to console you could send M114 and get a response in the log? Many printers react to commands as soon as usb is connected. Only after they get main p…
-
Am upload modul haben wir nichts geändert. Wie es aussieht wird es ja auch alles korrekt gestartet, nur das avrdude es nicht schafft die Verbindung herzustellen. Was einen Versuch wert währe ist den Drucker erst explizit zu deaktivieren und dann de…
-
No you normally cant. See Drivers.cpp line 138 void gotoPosition(float newPos) { bool up = true; if(newPos < 0) newPos = 0; if(newPos > maxDistance) newPos = maxDistance; here you see the tests. Going beyon…
-
The problem is that the position check prevents negative values - it doe snot know about this special case where it makes sense. Your solution would be to disable position check, so negative values are possible: G1 S1 should disable position check.
-
Ok have modified the test string to "Printer halted. kill" so it should match both versions. Will be included in next update.
-
Weil man hier gar nichts hochladen kann:-) Sieh mal im eeprom nach den Mischverhältnissen. Mixing extruder mischt ja je nach extruder 0-15 entsprechend der Gewichte. Vermutlich steht da im eeprom quatsch weil es vorher kein mixing extruder war.
-
That is not how host works. It just sends the gcode line by line to firmware. So no loopings are possible. Only thing is adding host commands ;@ for special tasks, but that won't help here.
-
Here are the possible settings: BED_LEVELING_METHOD 0 This method measures at the 3 probe points and creates a plane through these points. If you have a really planar bed this gives the optimum result. The 3 points must not be in …
-
Shit, you should NEVER post your activation codes in internet! Now everyone can know it and use it and when they are used you can not:-( Why did you post it? Licenses were not used except one installation so no need to even post it. What is the prob…
-
Good you kept your mails:-)
-
You can use the server upgrade in the frontend. Click on check for updates and it should see latest version. That will just install the server and new wifi handler. I think between 0.80 and 0.90.7 there was a update of the debian distribution to st…
-
For systems you already activated you see them in Main Menu->Register, otherwise in the mail when you bought the license.
-
Not all board/display combinations are supported out of the box or are even possible. If not directly supported you need to modify the pin mapping for the display. But without knowing the board/display I can not say much.