Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
That combination does not sound like a mixing extruder. Mixing extruder extrudes several filaments at different speeds to mix the colors. You have more a shared heater. So set that flag, give all extruders the same thermistor and only the first extr…
-
Did you check eeprom. Unlike marlin, we store most values on first upload in eeprom and later uploads do not change them. So check in eeprom editor if the values are set right.
-
Newer versions also have reset on connect, but you not set how the signal is toggeled. The next server release will get this switch back and you can run host over server in that case.
-
No, it is no official function. It is hardware dependent and is only available if it is configured as external command and hence only appears there. You can of course make your own frontend using the supported files where it is a implemented button.…
-
You can only move past endstop if ALWAXS_CHECK_NDSTOPS is 0. Target position test might also prevent this, so use G1 S1 to disable target position check.
-
Ja gelb ist er wenn er versucht den Drucker zu verbinden. Also muss er vorher getrennt worden sein. Normalerweise kommt das vom Betriebssystem. Und dann sendet er die start gcodes weshalb du die Daten gesehen hast. Ich frage mich allerdings ob dein …
-
#define TEMP_0_PIN 7 #define TEMP_1_PIN 3 #define TEMP_2_PIN 6 #define TEMP_3_PIN 5 #define TEMP_4_PIN 4 Are the pin numbers so TEMP_1_PIN whcih is for bed seems to be the last on the board just like in the picture sho…
-
Yes, I found the reason. Thanks for the notice. Will be fixed in next update.
-
Also check the cooling fan in extruder configuration. That is independent of the fan feature!
-
With some luck or beginning june. We are at testing stage of the release.
-
Please redownload it and install again. Just fixed the bug causing this on some computers. At least the first reporting it said, it is now working:-)
-
You mean the manual control tab flashes red before coming white? That would not be a problem I think, also I wonder why it flashes at all. It uses double buffering and for me it does not flash. But maybe I'm misunderstanding you and an image could c…
-
It's a bug. Please redownload the fixed 2.1.1 version. Should now work.
-
Just rechecked it and saw that it is not included for Marlin and M355 is now supported since Marlin 1.1, so I added M355 S1 M355 S0 in the marlin.xml firmware description for next release. If your version does not support this, you can replace this…
-
Check pin numbers. Sounds like you use same pin for heated bed and extruder or maybe extruder fan uses heated bed output, something like that.
-
It comes beginning June I think. Just testing latest features. The klipper permission problem is already fixed on github version. 0.86.2 can also connect with /dev/pts/1 as device, just /tmp/printer will require the next release.
-
Not what file. Just go to printer settings->G Code tab. Hit "Add new Command", give it a name and set gcode to your M42 command. Store config an dit will appear in the dropdown.
-
I think -20 is minimum temperature for the selected thermistor and you do not have it connected to the board, therefore you get minimum value. If they are connected, then to the wrong pins. Switch the pins in that case. Config looks good regarding t…
-
Haven't tried yet but in theory you can change max filename length in Repetier.h #define MAX_VFAT_ENTRIES (2)/** Total size of the buffer used to store the long filenames */#define LONG_FILENAME_LENGTH (13 * MAX_VFAT_ENTRIES + 1)#define SD_MAX_FOLD…
-
Output pins ALWAYS use digital pin numbers. Analog inputs over ADC are always analog pin numbers. On/off input also use the digital pin numbers.
-
Communication look sgood and I assume 2018-05-25 07:13:31: error: Reading serial conection failed: End of file. Closing connection. was when you disconnected the printer? Does this happen always or just once? If it happens more often you could enab…
-
Kann passieren wenn chrome nicht mehr rund läuft. Hab es bisher erst einmal gehabt aber da hat er irgendwie. Hier mal 2 Befehle um zu sehen wie der zustand des Linux ist: pi@Repetier-Server:~ $ w 07:35:02 up 9 days, 22:35, 2 users, load average: 0…
-
There are many reasons for shifts. Crosstalk to endstop is one. Then it shifts aways from the endstop. You said it happens in both directions, so this is only if you have endstops at both sides. Overheating of stepper driver makes short stops, here…
-
Out of memory for opengl is a problem but not necessary a bug. Model was quite small so I wonder if your pc has such a small memory and especially why 1.0 works. Would not assume factor 1 using less memory. The sliced result is always in your work …
-
Yes, just select in config tool under Processor "Arduino Due based board" and you find it in the boards list.
-
That is the butten sending M355 which seems to be not implemented. My other solution would appear at several places. Same page but at the top ">_" could contain it. Edit commands leads you to the editor where you can add as many commands as you w…
-
Ok, aber must du Repetier-Server neu starten oder den ganzen Rechner, was umgangssprachlich ja auch ein Server ist wenn du ihn remote nutzt.
-
If you enabled light in server config it will use M355 to toggle th elight on/off if oyu go to the light button in control tab. M355: Turn case lights on/offSupportFiveDTeacupSprinterMarlinRepetierSmoothieRepRapFirmwareMachinekitMakerBotgrblRedeemM…
-
This error is reported by your printers firmware and has nothing to do with host software. Host is just nice enough to inform you about the fatal error. In this case your temperature was 28°C apart from the expected temperature, so firmware disabled…
-
The server just sends gcodes unchanged. So if a 100mm move on y comes out 110mm it is normally the firmware where the steps per mm for y axis is 10% too high. Maybe you had a start script on host to adjust this to fit and did not add this to servers…