Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Well it looks like a communication error between server and firmware, so that is in deed hard to say. Did you read https://www.repetier-server.com/knowledgebase/prepare-for-prusa-mk3-on-raspberry-pi-zerow-rambo-einsy-board/ to see how to disable the…
-
Ich hoffe erst mal das das letzte Image genutzt wurde. Da haben wir ein paar timings verbessert da offenbar die Verbindung nicht immer schnell genug kam und dann beim verbinden abgebrochen wurde. Was immer hilft ist parallel per ethernet zu verbinde…
-
I also have a MK3 with einsy board. It has the bad habbit to show the usb port even if the printer/firmware is not running, so server will try to connect and fail with timeout. Check in printer settings "Printer is visible even if firmware is not ru…
-
I don't have it but we support linux and also have a 64 bit arm version of our server, so server will run. Only question is if the ubuntu has serial driver support included, but I guess so. I have their C2 and it has serial support.
-
What I mean is manual control click on home then enter in send line G1 X0 Y0 and see where your extruder is. Is it in the middle or left front? That is all we are talking about all the time. In your Printer Shape you told host where the bed is and …
-
If you tried a upload before printing usb that could be why you get the file error. If the printer was restarted and you did not try sd upload it should not happen an din fact never happened to me. As I prefer using our server for printing I normall…
-
If it did not have a heated bed I do not think that is supported out of the box. So you need the firmware from your manufactorer and add the heated bed and compile and upload it to use it. I think they use marlin firmware in some kind. Last days ano…
-
You can. Go to printer settings->G-Codes and add a quick command. That is available in control and manual control in the dropdown for gcode commands then. For exact definition of G32 please read marlin manual.
-
Under windows make sure no other software like Repetier-Server/Host is connected to the port or it will be blocked.
-
Server supports heated chamber, yes. You need to enable it in Printer Config->Extruder. Add a heated chamber and if firmware uses a supported output format it will show it.
-
Did the printer have hot bed support before you upgraded? If not you need to upload a new firmware with hot bed support. See M105 response in log. If it shows B: firmware has hot bed compiled in.
-
2711 should suffice, so no low memory problem as it seems.
-
Server filters unknown commands after first use if the unknown command message is known. Looks like MarlinKimbra uses a different string. You can add try adding ^[Ee]cho:Unknown command: "([MG]\d+) in marlin.xml. That should detect the M7…
-
Yes, just send the gcode over the console. I think marlin uses G32 for autoleveling.
-
I think printrboard goes into DFU mode when you set the upload jumper and gets a different port or none. Not sure. It's been some years I uploaded to that board. Also make sure to use the right board in arduino ide. I think you needed to add the boa…
-
Not really sure what the problem is you describe, but I think it is Z_PROBE_Z_OFFSET_MODE that might be wrong. It depends on if you measure the bed or the top including coating with your sensor. That can cause an error of coating thickness if set wr…
-
Original aim of firmware is FDM printing and that requires temperatures > 150°C, so the low area is not of interest for this application. Also for same reason 0 is off.
-
How much free memory does firmware show on start. Should be more then 1500 byte as you are using a cartesian printer. If it is less it could cause strange errors. But that is normally only a problem of delta printers whcih need more ram. You can al…
-
- M303 P S X0 R C- Auto detect pid values. Use P for heated bed. X0 saves result in EEPROM. R is number of cycles. method 0 = classic, 1 = some overshoot, 2 = no overshoot Yes, looks correct.
-
Yes you have marlin and the config is not for bed. E.g. #define TEMP_SENSOR_BED 0 means you have no heated bed sensor. So you must modify config to include bed support and upload that.
-
Reinstalling does not delete configs. They are in /CuraEngine/ and it's subdirectories print and filament. Try saving them with a different name then default and see if they are there. Instead of reinstalling you could also just delete the CuraEngin…
-
Same as I have and setting adhesion type to brim created it for me. Internally it computes the lines by dividing brim width/nozzle diameter. You can set it in printer settings->Extruder or extrusion in curaengine. Make sure one of them has 0.4 or…
-
0.91 is fairly old and bed leveling has gone many improvements, so upgrading is the better way. But I think the melzi board has only 128kb ram which can be the problem. Full featured firmware is bigger. So you have to remove all languages but 1 and …
-
If it works with stock 0.92.9 it should work win 1.0.3 as well. It is still the same u8glib, just added maybe some more chipset types. For display only the settings in User Interface should matter.
-
Check first eeprom values. Firmware takes what is in eeprom and not what is in configuration.h. Use M502 M500 to copy config to eeprom. >start to print at about 300mm/min , X and Y axsis did not move correctly, i was checked my step per mm setti…
-
You better use the arduino ide and make sure to have installed the avr 1284 variant (sanguino I guess). You already failed on the arduino core files so I guess they are missing them.
-
It this for the whole height or only first layer? Slic3r supports a first layer temperature that could be 5°C lower. As it only calls slic3r and does no own changes it is either filament setting you selected or the init gcode script contains a -5 in…
-
As it is not a question I moved it to tips and tricks. It is a good example of how to install a display driver. That is as I can see the only real problem with our pi image. It is for hdmi output and depending on the display you use, you might need …
-
Check your settings in curaengine config->structures. You need to have definition for raft/brim. E.g. brim width=0 will not create brim even if you enable it.
-
Ok the postprocessor thing is easy. In printer settings->advanced you have checked "Run Filter after every Slice" without defining a postprocessor. So just disable that check button. For positioning I already told coordinate systems must match. …