Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Does G30 return correct distance between nozzle and bed? If not fix z probe height to match by changing with error remaining. Also if you have z min = z probe use dev version and not 0.92.
-
z axis with rods? These have often very high steps per mm, not a slow as x and y but more 2400 or more depending on steepness of lead screw, substepping, motor resolution.
-
It is implemented in HAL.cpp but only for fan and fan 2 and not for cooling fans. Rest is in printer.cpp void Printer::setFanSpeedDirectly(uint8_t speed) {#if FAN_PIN > -1 && FEATURE_FAN_CONTROL if(pwm_pos[PWM_FAN1] == speed) r…
-
What kind of pc are you using with which linux distro and version. Sounds like systemd was missing which is used to start server on startup. Recent distros now are all on systemd.
-
Host settings are just a clone of firmware settings so it known your printers dimension. Important for homing is to configure firmware correct. Host has no zmax ony home Z = z after z homing and printer height.
-
Configuration.h:170:29: error: ‘TEMP_3_PIN’ was not declared in this scope #define EXT2_TEMPSENSOR_PIN TEMP_3_PIN means you have selected 3rd extruder but as you see from error message the selected board doe snot have a 3rd extruder output. You ne…
-
That is not really an option. Depending on slicer and profile they have multiple temperatures per extruder, so for anything more then that it is a difficult thing to adjust especially since the server has no access to the printing profiles which als…
-
Good idea.
-
Where is it gone? If you have our pi image it should appear in printer configuration so you can select it.
-
@maralb you need to rename it back. IF you have a display connect keyboard ant alt+2 I think to get a login text window. Otherwise connect to ethernet so you can login again. @3DBRINK we are overhauling the wifi management making it more versatile …
-
Do you use a display that has stored pin usage in displaylist.h (assuming you use 1.0). If pins are wrong this may fail and I know there are not many displays for that board in our list. bed leveling mirrored is not enoug information to help. What …
-
We normally do not use hardware PWM as these require timers which we also need for timing steppers. So this works only in the special case of a pwm pin with unused timer and that differs from board to board, so we skipped that. For laser you shoul…
-
I see. Compiler did set minimum size to 99 unexpectedly so echo overlaps the info button. Have fixed it for next update.
-
The guessed solution is always to maximize usage, in this case image over height to fit exaxtly and position is the center. So if you want to spare top/bottom just reduce height bei 2 x border you like to have so in this case 2mm. Do not change cent…
-
Please try in cooling to set minimum speed to 50 as well as minimum layer time (not settable) can cause a slowdown.
-
Ok, I see that this is nice for heavy users. There are some problems and solutions and plans here. First host is designed to have one printer per configuration. The same is valid for the server. Your dropdown for selecting server printers makes only…
-
This is already possible. See manual -> Advanced Setup. It describes how to reboot or shutdown pi. Same method can also be used to restart the server service.
-
Did you hit "guess from projection method"? I not think that the object has only 2mm height since you set center to 1mm for z. Also you see you have sliced the object with different speeds over height - I guess from minimum time per layer calculat…
-
So you are still using the old RADDS board? If the eeprom on radds board got also fried it will not work any more and firmware does not start. Set EEPROM_MODE 0 in configuration.h and try again and see if it works. If it does you know eeprom chip is…
-
Yes, you now need to set the coordinates. In older host versions the coordinates were taken in some cases, but not always. But these answer is not correct any more for all firmwares so we removed reading them as this could occur on other things as w…
-
A good theory and at least I can replay it. Also it shows correct group it moved it first so yes, I think the empty combo seems to trigger a changed event before setting it correct. Now I can reproduce it I can fix it. Thank you.
-
When you do any move action the motor gets enabled and it should be hard tu turn it from holding torque. Does this happen? Any sound when moving like a high pitched beep - that would be loosing steps from too high stepper frequency. Also check steps…
-
I fear not. You might start a post searching for someone. That way you get at least responses from users with 3d printer experience, which might help also this is more a programming and mathematical problem.
-
x and y length are for defining valid bed outer square together with x,y min. G32 is only correcting z direction so it is ok that it does not change them. So for 200 radius x,y min = -100, x,y length = 200
-
Beld driven system can reach 100-200mm/s speed and 2000-7000mm/s^3 acceleration. If it is rod driven like cnc machines it is much lower. Important is also to set steps per mm correct in accordance to pulley and microstepping. Our repetier-host has a…
-
What firmware is a8 using? If answer is marlin what is the M115 response string for the firmware name. EEPROM for marlin is available if detected, but if vendors remove the marlin firmware message and replace it with own we can not detect it any mor…
-
Running configureFirst.sh would be everything you needed to start, it calls everything else. Setup requires sudo so it can add it's stuff. Wheezy is a bit old, so it might be that mono is outdated. You can download a new mono version on their homep…
-
So it did it wrong and now correct and you want the wrong version back:-) No idea why it did this wrong but since it is now working as intended I will do nothing. You can set one script to do this. Set it to G28 G1 Z180 F6000 by right clicking the…
-
Busy processing just is the firmwares way to say: I'm doing something so do not bother if I do not respond directly. So that is ok. It also shows host is doing his job correct sending the moves. Motor shaking is your problem I think. YOu see at one…
-
You need to deselect some features to reduce flash usage. LCD display and different langagues are the main source for high flash usage. So reduce lcd languages to 1 or remove it completely. Or check some minor features depending on how much ram you …