Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Yes, I have missed the 1.0 part. G33 L0 returns the stored correction matrix so you see if it mimics what you expected to be stored. What I did for testing was setting 100% correction to 10mm and added 5mm bump by hand (G33 X Y Z5) and then at Z=5 …
-
You mean thermal protection of stepper drivers causes it to not move? Then you simple need to reduce voltage on the poti. Make sure you have cooling caps on chips and a fan is not wrong.
-
The HAL WRITE is just for digital output. We have no function using the dac so you can simply use the arduino function. That said, how do you plan to solve the timing problem. The function you have choosen gets called once you add a line but this h…
-
Ok, I will try with physical connection then.
-
First make sure to use dev branch since G33 for cartesian has some flaws in 0.92 preventing correct moves. Then you must be aware that it only covers the area where you measured with probe. If the crown is outside it will be neglected since printer…
-
No, we don't have that printer. But is just changing the value to a lower value. You can simple make some test move to see wht it can handle and the subtract safety margin as some bumps might cause extra force and then you loose steps when operating…
-
Just open Printer settings and select virtual printer as port. That would exclude differences in printer. And I also doubt idle printer do 250MB communication in 45 minutes so it should not depend on serial data, but it is better to test if serial c…
-
I'm really wondering that it affects the print. AT first everything was fine for me. But setting variables for print visualization from "Layer Height" to "Filament Diameter" makes it create these visual glitches, but only in print visualization. It…
-
So what does it now look like, your xml I mean.
-
Stock repetier will never do this as this is nothing a printer needs or would be good for a printer. But it is of course possible to do. For Z axis we do this if you have 2 z motors and 2 endstops. But that has same steps per mm. Your solution is t…
-
Im testung under macOS Sierra, but that should make no difference regarding memory leakage. I have printed a small object with a virtual printer and left it connected. All it does is reporting temperatures but memory did not increase after 3 hours. …
-
Thanks for verifying. I see my theory is mostly correct, only I always confuse with the direction and got the wrong one. Have fixed the description.
-
So when you print the preview your print is correct but the drawn rendering is what you show? Can you provide the gcode for this so I know it must get the error. You never know what trigger sit but looks like an error on our side and as soon as I ca…
-
Do the same as for the shutdown example. Call it with sudo and add the command to sudoers like we show there.
-
One solution might be to send after using home buttons a G1 move to the assumed position so they fit. So entering a z height a bit too low but on safe side would work always. Have to think if that causes new complains from all users having set the c…
-
Czech is buggy at the moment as we expect cz and get cs, that is fixed for next release. User repetierserver has no password as you can also not login as that user (no shell). Maybe that is part of the problem as all scripts I have done so far use …
-
Do you have installed the com driver for printer? Selected correct com port and baud rate? Transfer protocol to autodetect?
-
Change max feedrate in eeprom for the directions needed.
-
In Chrome and firefox you can set preferred languages. If one of these is supported, server will show it. So add your language there at first place. Only if no language known is present server wil swtich to default language. SO it honors browser wis…
-
Your gcode contains line numbers N which get added by host. Do not use line numbers in gcode by yourself, strictly forbidden. The reason it does not work any more is that in previous version we replaced it which i snow not possible since Marlin has…
-
That is also included in the samples. It ises the S value to set laser just to a chip instead of making a analogWrite so change that write to chip with analogWrite and it should do.
-
What I meant is that everyone with access to server can run it, but since it is not configurable from server it is safe. I mean it only restarts the server so it is all they can do. Also you can add a confirm dialog and set required user permission …
-
Skipping steps can come from jerk being to high, acceleration to high and speed to high. Depends when they loose steps. If speed is < 100 for xy it is normally jerk.
-
I think you have the pin id's wrong. Please set them explicitly as digitital output x especially if you are using the RAMPS board definition. This is where they differ and setting them explicitly to correct value should help.
-
That code gets only send when you start a print. You were talking about manual moves after connect. So open log enable commands send and see what you send. Maybe first send M114 to see what firmware thinks where you are to have a base. And please al…
-
The sample is now online on github. Just switch to dev branch and check in samplEventSystems.
-
When you get M999 reset all commands are ignored until the problem is fixed. SOunds like your temperature settings are not correct. Do you have thermistors connected to correct pins and good temperature readings?
-
This depends on the command you send to printer. On startup position 0,0,0 is assumed from firmware. If your host software sends G1 X20 Y50 Z20 all axis move. So you have to check what commands get send to see if this is an error or misconfiguration…
-
They write to make this: In Pins.h (scroll down into the “RAMPS pin assignment” section or the board matching your setup) make sure the following lines are present, if not add them:#define ORIG_E2_STEP_PIN 64 #define ORIG_E2_DIR_PIN …
-
Just what I thought. No hint of marlin so no way to decide what it is. Will add this for next release.