Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Normally it does clip, but the deadtime adjustments changes it I think. SO not really happy with that solution.
-
Ok, no errors and gcode looks good. The way it works with advance is that there is a separate interrupt only for extruder steps. The motion will increase a open steps variable and the interrupt will later execute it. In your case the interrupt needs…
-
That version has improvements for PID control. That unfortunately caused the dead time to have a test period of 1s instead of 0.3s as before so it did not work as good as before. There are tries to improve it, but these cause your overshoot. Add #de…
-
Latest version is 0.91.0 now. Server works a bit different then host and is a completely different software. Here we have the place where data is stored (pc running server) and computer running web browser. But you can still see layers and motions i…
-
I have an idea and just hope you have entered bad values where I think. To prevent oozing there are in deed retractions and undo retractions send. The distances are defined in printer configuration->Extruder->General Extruder Parameter. So if …
-
Repetier-Firmware works with 32 bit due compatible boards like RADDS. But there are also 32 bit boards with different processors that won't work.
-
You can. Each driver has 3 lines enable/direction/step that are defined in firmware. So if you add them in pins.h you can use them. Regarding pin numbers make sure to use Arduino pin numbering, not physical pin numbers. As a test connect a led + res…
-
You should switch to 1.0.4 for linear advance. There were some important changes improving quality with it. None the less 17 is not much and no reason to stop. I've gone up to 90 when testing the improvements without problems. Do you see any hints …
-
The mega2560 has 256kb flash memory! It has only 8kb ram and with some luck around 3kb free ram, 1kb is needed as stack for different operations. Deltas are lucky to have 900 byte ram for the stack:-)
-
Never seen motors in series, only parallel. In that case current requirements double so driver can get hot. So solution would be using extra driver which works normally great. You need to select mirror z axis and make sure no extruder uses same moto…
-
You should use bed map function in host to see if printer is calibrated good. Otherwise check for escher delta calibration and use the variant with 6 variables to improve geometry settings. If after G32 S2 the distance is wrong your z probe height i…
-
Nein, sollte auch mit anderen Firmwaren funktionieren. Hat der gcode vielleicht G10/G11? Das könnte eventuell stören. Er spart alle G1 moves mit E aus. Daher sollte da nichts extrudiert werden außer wenn andere Befehle etwas extrudieren die er nicht…
-
I think for host that is all. Server has some more.
-
Please check for update. Just released 0.91.0 which definitely has 2 uploaders for avr1284.
-
The rectangle you see is a preview sample for printer. You have enabled it in printer settings->shape and should disable it. Makes no sense to show a shape not matching printer.
-
That is not what I said. I said read https://www.repetier-server.com/manuals/0.91/index.html advanced setup how add scripts to extcommands.xml. There a script get connected to a name e.g. poweron and then you add @execute poweron in the start gcode.
-
Open in repetier-host eeprom editor to modify the 3 z-probe points. Meaning depends on how you compiled it. If it is a rectangle P1 is one edge, P2 will span one side P1->P2 and P3 spans a side P1->P3 of the parallelogram.
-
Color changes based on the fact that windows connected the port. This does not necessary mean that there is communication. Some boards need special state of DTR/RTS pin to send data. You can try with Repetier-Server to connect. There you can already…
-
I think the melzi board uses the Arduino 1284 or teensy uploader. For compiling you also needed to install special packages as it is not an official arduino. Do you already see 2 Arduino 1284 uploaders? I lately learned there are 2 baud rates used b…
-
Yes, also had doubts from the spi level shifter. MY display is one of the first ever produced so maybe they changed chips later. Anyhow since it worked for you with your hack it should also work with new version if not any code changes the pins back…
-
Did you check that the display does not use that pin? As I said without feature controller pins will not work. And if they use the same pin for something it also won't work. Did you use UI_ACTION_PAUSE as action? Only Repetier-Host and server will …
-
Protocol ascii and right baud rate set?
-
No, it is currently not possible. Date makes only sense if you copy them by hand. Firmware does not know anything about time so if you upload using host you have no valid date. Problem with sorting is that it takes quite some memory depending on fi…
-
Just for information. I had a look into MQTT and how it works and I like the idea, also users should then know what they do opening it. I think it should be possible to send events and allow clients to send api calls as described in web api. Will no…
-
You need to consider that activating z probe adds the offset. So select a rectangle inside your bed that is allowed including offset. Or do a simple 3 point bed levelling always close to the 3 columns but within limits of allowed coordinates. x/y l…
-
Check advanced configuration how to define scripts for @execute server command. Once defined just add it in your start gcode in printer configuration. There is also a a end gcode script where you can add power off as well, just add maybe 40 M400 bef…
-
Most of the time you get away with that especially since we do a disk repair on every startup. But somehow it seems possible to get that error. Also make sure you have free disk space. That can also lead to unexpected problems.
-
Even with a command there would be no autoon. You would still need to send it. Same if I would include a editor to add menu entries. It would just be an entry you need to select or a command you need to send. We are working on an improved lua handl…
-
Video sounds good. Please post url so we can eventually include it in z calibration tutorial. That solution is not covered there.
-
Ok, have updated dev version to contain your settings. I can see and control display and it also registers if sd card is inserted, but I see no files. Did you see files for sd card? The trick to handle both displays is to define sd card settings in…