Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Make sure transfer protocol is autodetect and also try 250000 baud. You could also connect with a normal serial terminal and send M115 to see if and what it responds. If you see garbage the baud rate is wrong.
-
On deltas I would always home after a filament change. If you move position while changing the firmware ha sno chance to detect this, but homing corrects that.
-
There are only 2 things it downloads if options are selected: 1) Skeinforge - no one really wants that. 2) Server. You can skip that and if wanted to use it download the server installer from our homepage www.repetier-server.com directly.
-
No. Since it is incompatible and very complicated to integrate I can not make any promisses on the date.
-
Yes #define FEATURE_FAN2_CONTROL 0 should be set so it does not use same pin. Also check if you have no cooler pins set to fan 2.
-
Yes, the firmware is not accepting new commands. Many firmwares do reset on connect so emergency stop might stop faster in that case.
-
It's all in ui.h/cpp Variable uid contains the display settings and there uint16_t menuPos[UI_MENU_MAXLEVEL]; // Positions in menuhas the menu positions currently active for all menu levels. You need to find the enter command to set…
-
First try without filament so no forces are there. End M302 S1 to allow cold extrusion, otherwise moves are blocked since extruder might be too cold. If it doe snot move open eeprom in host/server and check the weights. Might be that your wights are…
-
Sure that is no problem. Go to printer settings to scripts. There is one for pause and you can move extruder if you like.Enter e.g. G0 X0 Y0 F12000 to move if fast to origin. Maybe also retract extruder a bit before. Pause will remember last positio…
-
Left from the browse button in slicer manager you can simply copy the path if you know it. No need to browse. Or select a path that has no dots and start slic3r from host and it will create a new config directory. The file dialogs come from mono/.n…
-
Connect with repetier-host or server and select eeprom editor. Change the field with steps per mm for z axis and rehome and test again.
-
Best solution is not to change positioning mode but to add a G92 E0 for each move. That way relative and absolute behaves the same and afterwards the setting is the old one.
-
Light gets set over CASE_LIGHTS_PIN whcih I do not see in your config part.#define FEATURE_FAN2_CONTROL 1 mean enable second fan and that also uses FAN2_PIN and will disable a light enabled with M355.In that caseM106 P1 S255 should e…
-
Server does not support sd card. Also sd card completely bypasses server so no timelapse is possible in that case. All you can do is watch temperature:-) With respect to end of print it seems that the other softwares have some preprogrammed "end sc…
-
1. No option for that. It is also not easy since there is the chance that a directory is empty. You might set a flag and on first listing set index to 1 if files are present. 2. Hope you are good at programming:-) First problem is that there is no …
-
In command console you can see dot files with ls -a and simply cd into it. For file browsers there is a solution that differs between browsers. Somewhere there is normally a option to also show hidden files. Google should help here if you name your …
-
Typical reason would be having some other function using the pin as well. If you have for example configured 2 fans it would turn off the fan2 on next pwm set since the fan is off by default. Same if that pin is set as cooler fan for an extruder or …
-
No problem. You can add global or per printer menu entries that call a script, see advanced setup in our manual. The forum also contains some threads around the permission problem since scripts are started with the user running the server, so it mus…
-
Have you already tried without the pwm modification? PWM only works for very few pins that are bound to a timer that does not get used by firmware.
-
Pullup resistors are more voltage dividers and should be 4.7k for analog input for thermistors.
-
Timelapse can be activated in the webcam tab. You can select to record next or all prints. Stop at the end is also quite easy to understand. Server just sends you gcode. So your prints do not contain any gcode to move it away. 2 solutions here: 1. …
-
The error comes from firmware not host side. Host only provide the checksum. But ok, the question is which side is computing the checksum differently. Server uses repetier-protocol which you said host will send wrong, strange. Will try to reproduce …
-
What I mean is the the firmware must send enqueueing "M600" as a response to out of filament sensor being triggered. Only if that gets send by firmware host can detect that it happened. And then if the "fatal error" checkbox is enabled it will also…
-
Maybe you should explain more why repetier-host is being used as cnc and especially what firmware you are using. Every firmware has a slightly different understanding how gcode should look like and since host is written for fdm printer gcode, that o…
-
Also we are the wrong address for marlin related questions, it is as I think. You used same sensor pin for bed and extruder but these are different devices, so how should that work?
-
Laser turns on when E value exceeds or with M3 Sxx. But it only turns on for G1 moves. When not moving or for G0 moves the laser stays off. That way you can use G0 for positioning and G1 for engraving.
-
No more like this one http://forum.repetier.com/discussion/comment/17741/#Comment_17741
-
Please check the forum. There is at least one thread in the recent past describing how to do it. In the github sources you will even find the matching modifications from RayWBa in the sample events directory.
-
Well they changed at least the configuration.h to match the printer and that is all you want. And since it is a modification of sources they must publish at least that file. You could test if that option is enabled by homing, go up and trigger ends…
-
That is more a Marlin question as Roko already pointed out. Something with the library I guess, but have no experiance with that. Better ask in a Marlin forum for that problem or switch to repetier-firmware.