Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
In configuration.h you see the list. Also config tool offers the list of available thermistors. Better description of type si snot available. If you think yours is not listed, select in config tool user defined and an editor appears where you can si…
-
This type of error is normally not visible directly in config. I guess you are using different stepper drivers and radds uses 3.3V while rumba uses 5v. Means direction might need inversion for these drivers so it moves then up. Also check endstops w…
-
Please check the log for this. Since you start it at z=0 it might skip it because it is some error state (meaning being triggered already, not able to deploy z probe, ...)
-
Ok, just added the feature to dev version. You can now set #define MAX_FAN_PWM 128 and it should limit PWM to that value. Please check if I'm right and implementation is correct. Just tested myself that 255 is still working. Tried also to include ki…
-
No existing way. But servers have a open API which you find in our docs. Using this you can write a batchfile that e.g. uses CURL to send such settings or a gcode you give as parameter to all printers. Instead of curl you can of course also use java…
-
I know CNC variants do not require spaces. Some even do not require G1/G0 on every line, but printer firmwares do:-)
-
I'm quite sure iframes are still supported. If they do not load your syntax might be wrong. But I hope you do not try to run several instances in one page. That might be quite heavy for chrome. Better is to have one iframe with selects and one where…
-
Pins on smoothie return 3.3V, 10-20mA. But if they are connected to a mosfet like fan/heater outputs they have the main voltage you deliver so 12/24V depending on what you use.
-
No, not the same problem. This might be from infill pattern (does it match the infill density?) or vibrations from belts or direction changes or ... transfered.
-
It is hard to say why it does not stick to bad as there are so many reasons why it might happen. Bad surface, bumps on bed so distance varies, bed is not 100% leveled so some parts have bigger distances, printing with a too high distance, wrong bed…
-
From the graph there is no reason visible for the dropdown. Heating power even increases and temperture goes down. One thing where this happens is if fan sets in full power and also cools the extuder heater and not only the pla. There you get such a…
-
Did you calibrate with cold bed/extruder or hot? The result often differs. Cold extruder may have a PLA drop making it higher so it touches be earlier. Also hot bed often has a slightly different height.
-
g1 x15y15z15 is invalid and needs spaces, also all chars should be uppercase, so G1 X15 Y15 Z15 would be correct version. In general windows and pi 3 version are identical in source code and should behave identical with same configuration. For deb…
-
Not sure what firmware they use, but as long as you have the configuration.h tellung you what components are used etc. it shoudl be easy to make your own firmware in our repetier-firmware config tool. Assuming that they use a board that we support.
-
It is not the temperature table that is the problem. Try using PID controll optimized for 220°C maybe. That should give a good performace for a broad range. For creating correct temperature tables I suggest using the config tool. As soon as you sel…
-
I guess the moves were all smooth, no pauses with this amount of wards? So the reason would then be an unsteady flow of filament. Can happen if filament is not hot enough and you are operating at extruders limits. An other thing is extruder not doin…
-
When firmware resets it sends a "start" so host knows it is restarted. We try to reset boards so "" no start signal detected, forcing start" means printer did not reset. Some boards never do so you will see this every time and it i sok in that case.…
-
Also this is for marlin and this is repetier forum, the code is illegal. Printer firmwares have no sticky Gx/Mx and you need to add it for every line.
-
You should never modify the values after downloading. The config stores all values twice. Once for compiler and at the end for config tool. And only if you always change in config tool they keep in sync!
-
First if you change better set it to 115200 baud. Uploading firmware does not change baud rate because it is stored in eeprom and you did not update the eeprom. If you have a lcd display just go to config, change baudrate, go back and store eeprom …
-
NTC 3950 is just a generic curve according to a certain formula. They are normed at 25°C having 100K resistance. The further you come away from this position, the bigger the errors may come. Even for quality thermistors where they give you the formu…
-
1. You must enable HAVE_HEATED_BED to get bed support. 2. What does that mean? You can invert and change steps per mm (in eeprom) to adjust movement.
-
On download page is a button "Download older versions" that use old version. But be carefull as 0.85 -0.86.2 had critical bugs. I can deactivate and activate and it is there. What in deed does not work on the windows version is unpower the board and…
-
Please use repetier liek syntax, not what marlin expects. Here from dev version the description: - 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 = class…
-
Interesting idea. So instead of clicking tab (which does what you want) make it focus directly. Actually I'm one of those using the dial to set value, but that would still work when input has focus. Only thing is to find out how to focus it since it…
-
# sudo -s# echo "repetierserver ALL=NOPASSWD: /home/pi/raspberry-remote" > /etc/sudoers.d/repetierserver-remote Should add it into the sudoers list, so that sudo does not ask for a password, which is the main problem here you try to solve.
-
"If you bypass the config tool and make the same changes in Arduino and upload, then the Z axis works just fine" Can you tell what setting is wrong? Appaerently one of the z related settings is different in config tool, but which one doe snot get s…
-
Ok, found that the due version did not copy all 4 new files. Just fixed that, so please redownload dev version.
-
No, as I said my computation for x was wrong. Config looks good. Just try new version I just uploaded.
-
Mh, if it worked under Melzi without backlash and would work again then it is no mechanical backlash. Then I would more suspect the stepper driver having not enough current so it falls more into full steps and does not do all microsteps. But you wou…