Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Am besten erst mal testen wie die Stromversorgung des PI ist. dmesg Da sollte kein overcurrent oder undervoltage erscheinen. Er zeigt aber nur ereignisse seit dem start an, also nicht unbedingt direkt nach dem start testen. Der PI mag keine Spannu…
-
Instead of G10 you can always use G92 E0 G1 E-1 F1800 ... M402 T F2000 G92 E0 M402 X0 Y0 F12000 G1 E1 F1800 M402 F2000 You need to unretract before last M402 that sets E to last value. Or you will start with wrong E value, also slicer might add a G…
-
That is a usb charger. You need a 3A power supply. From electronic side that makes a big difference - a power supply is supposed to hold voltage up to max. current. Chargers are allowed to drop voltage/current. Some chargers may work when they have …
-
At least the Ultratronics Pro should already work. The velleman has 8 bit I think so will not work at the moment. Maybe there are some compilation issues with the ultratronics board, don't have it in a printer so not tested constantly, but that woul…
-
Check your code that you run on pause in host. Must be something in your code I guess. You can also check in log when you enable commands what gets send to printer that might cause the blob.
-
the overcurrent change seems to be the problem. One or more of the usb ports draw more current that allowed/available. Not sure with the flash symbol - normaly it indicates undervoltage but might also signal the overcurrent. Normally dmesg shows und…
-
0.95 gab es die überhaupt als firmware? Was gibt M115 zurück - da steht die Version drin. Egal sieh mal ob G1 S1 die Positionsüberprüfung abschaltet. Wie setzt du x,y Nullpunkt? Normal is nach home x=0 ganz links so dass man nicht weiter nach links…
-
Yes #if defined(EXT1_HEATER_PIN) && EXT1_HEATER_PIN>-1 && NUM_EXTRUDER>1 SET_OUTPUT(EXT1_HEATER_PIN); WRITE(EXT1_HEATER_PIN, HEATER_PINS_INVERTED); #endif should initialize it. EXT1_HEATER_PIN should be set and NUM_EXT…
-
No, beeper is independent from display. Display may override pin variable if it has a beeper defined as well. Does it make a sound with M42 P27 S255 and disables with M42 P27 S0 ?
-
Just use the second fan. They can be controlled with P0 for first and P1 for second extruder with normal M106/M107. Repetier-Server will also offer control for both if you increase fan count to 2 in configuration.
-
Note that you need to home Z and normally can not go below 0. If you would look into the log you would see you are likely to see a message about illegal positions. Possible solutions are: G1 S1 ; disable target position check G30 H R Make probe defi…
-
Die Befehle sind in der Firmware Konfigurationsdatei des Servers abgelegt. Unter firmware/marlin.xml steht da M355 S1 M355 S0wenn man die ändern gehen auch andere nicht offizielle Lösungen. Einziges Problem dabei ist dass wir die Datei gelegentlich …
-
@namanjohnson101 You did not say what your problem is. Assuming the problem with using virtual printer instead of real one was solved.
-
With G92 E0 you do not need G10/G11 at all as you can add any extrusion you like. But pairing them or removing them would both solve the problem I think.
-
O bet on the G11 since you are missing G10. They must always be like a pair inside M401/M402. If you have RETRACTION_Z_LIFT different then 0 they will move z (your problem) by changing the z offset. So only with matching calls the offsets get reset…
-
Please open log and see what got send and what messages you see. One thing especially if it hangs at start are the heat and wait for temperature. Also you think temperature is reached the "wait for temperature" part may have rules to keep it for x s…
-
maybe in setup (in printer.cpp) the initialization of the output pin for send one did not happen due to a similar #if test. Then it would not send any signals.
-
Du kannst auf Informationen klicken. In dem Fenster kann man die Gruppe wechseln. Wenn du die Pro version besitzt, installier dir Repetier-Server Monitor. Da kann man sogar Dateien markieren und als Gruppe verschieben.
-
Currently we concentrate on adding functions/drivers to V2. The tool will come after that all works. So may still take a while especially as it will be much more complicated to write the tool with the flexible module system of V2. But manual configu…
-
Without eeprom it takes settings from configuration.h directly. So seems to be eeprom related. Next enable eeprom back but remove #if EEPROM_MODE != 0 if (alloff && !alloffs) // All heaters are now switched off? EEPROM::updatePrin…
-
Such connection problems are most likely caused by undervoltage. Especially if all connections are dropped. But normally server will reconnect after wards and your description does not sound like that. Run dmesg to see if you have problems with unde…
-
Reformatting is hard and only makes sense if windows is broken. Updating host replaced all host files and deleting the registry entry made it like new installation already. Try first scanning windows for defects and repair them: https://support.mi…
-
Delay is the problem. M114 can not be trusted during printing. When the coordinates reach the server they are normally already invalid due to following moves buffered/send. Only if there were no commands after M114 we could trust that. And since we …
-
So icon disappears? Means it crashed or shut down. Can you look at the windows events if there is some information about it. Any updates since it worked? Windows update, protection software, ...
-
What I guessed. So waiting for results without eeprom or removed eeprom save.
-
That happens if I do not have printers with heated chambers:-) It is not programmed to appear, so no error on your side. Will add it on wide screens for next update. But in print status it should be visible if I read the code right.
-
Didi you update image or just autoupdate? Autoupdate will not delete these files if they exist. In fact extcommands.xml can only be read so server will never recreate it. With the image it will be replaced of course with the images default files. F…
-
Not sure what you try here. Server doe snot know anything about host. Host just has a connector to use the server API instead of that you use the web gui. So host can connect to anything locally connected and to any printer that is connected with re…
-
Server does not get it from server. In printer setup in server you can define the homing coordinates it should assume. Entering the coordinates there makes them match after homing.
-
Ok, quite simpel assign second output to EXT1_HEATER_PIN. In HAL.cpp serach #if defined(EXT1_HEATER_PIN) && EXT1_HEATER_PIN > -1 && NUM_EXTRUDER > 1 && !MIXING_EXTRUDER if ((pwm_pos_set[1] = (pwm_pos[1] & HE…