Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
WIth z max you have no special problems needing preheat. Here simply use z,x,y which is always safe since going up does not hit anything. MISO/SCK/MOSI can only be used if you do not need them for sd card or other SPI devices, but you seem to have …
-
Actually with EMI messages I would more suspect the other side of the usb connection. Especially the cheap chinese arduinos do not always behave as good as you might think. Also I never had emi problems my self, it might be a part where some cents w…
-
Most boards can be modified to be always powered from main power and not over USB. Maybe that would help. I have this for my test setup with pi and also I sometimes see the low power icon I have no connection drops.
-
Would be great. I also think I will recheck handling compared to marlin. Especially to make sure it doe snot use advance during retracts. Have already had some corrections here in dev version. Maybe even add M900 for compatibility, but can not say e…
-
No, smoothieware uses a different processor/architecture so our firmware does not work on these boards.
-
Zonestar ZRIB 2.1 but it only available in dev version for 1.0!
-
Don't really think that the mac version will get it, sorry. Maybe we add it one day in the server as tool then it would also work on mac.
-
Yes, WPA2 is supported. I have PSK2 selected for my WPA2 network and it works. It only does not work with EAP based authentication as far as I know. You can connect using ethernet cable so you can check in /var/log/syslog to see what is going on du…
-
https://www.repetier.com/documentation/repetier-firmware/z-probing/ is the tutorial I meant.
-
G33 is designed to measure the bed unevenness so it basically tries to measure at z=0 + z probe distance. You want to use the top of your wood sample I think. Adding the wood size to z probe distance could trick it into measuring but then all values…
-
In config tool you can simply select which endstop is on which pin. So for z min set not connected and z max set the z min pin and change homing direction and you have z max homing. You need a separate pin for z probe. You can use any free digital …
-
The log shows no errors at all. Perfect communication till the end when it seems to stop. I recently learned that the pi for some users disconnects the usb connection which of course causes a stop of print. Have a look at /var/log/syslog around th…
-
You really open a door using a servo? Use - M340 P S R: servoID = 0..3, Servos are controlled by a pulse with normally between 500 and 2500 with 1500ms in center position. 0 turns servo off. R allows automatic disabling after a while…
-
Octoprint works completely different so we never can change the same API. It already starts with the server supporting multiple printers so you need to say which printer you mean. For simplify 3d we have in our docs a tutorial how to upload on save.
-
Das wundert mich ehrlich gesagt, da es ja kein server sondern linux problem ist. Wenn ich im log nachsehe Usb verbinden: Nov 29 07:11:48 Felix kernel: [7742691.317985] usb 1-1.3: new full-speed USB device number 29 using dwc_otg No…
-
z-max homing is in deed a good trick. Apart from never hitting an object you can set z length > height allowing to go everywhere and you can use G92 Z0 to set z=0 at any height. After homing chaneck M114 to see what firmware thinks where it is. …
-
Just go into the eeprom editor in our host/server and change the values. Endstop offsets are calibrated with commands as described in our calibration tutorial, all other values are normally set in eeprom to calibrate.
-
You can set values permaently in eeprom editor or temporary with M233, M900 is currently not supported. Try only using linear advance. That seems to match much better. Make sure to modify L parameter (whcih pruse names K, but K is quadratic term he…
-
G32 does not use any of the distortion parameter. These re meant for G33 which creates the distorion map. Last 4 params are only for cartesian printers, deltas use radius. In your case the 3 z-probe points are not all inside printable area. Always …
-
Position respons eis not reliable because some include G92 offset and others don't. This partly also depends on firmware version or source. Also in a print this was always ignored since following commands may already have invalidated this. So only t…
-
Have you set the right homing coordinate in host printer config. Guess you have set z position to 0 so it would home to 0 and with z length being too high that hits the bed.
-
Use the generic send command to send the gcode. You can always use this if a gcode exists. For movements we also have a generic function since it might depend on current position here, but otherwise just use gcode.
-
Typical RAMPS error. It has only 3 power outpunts hence fan and extruder 2 use the same pin. #define FEATURE_FAN_CONTROL 1 also enables fan, so fan disables temperature data here. Disable fan or switch to an fan externder board and use the pins on …
-
One of our download servers was down. Guess that was the problem.
-
Ok teste dit on 0.86.2 version 13:24:08.088: N16 G28 X013:24:09.526: X:0.00 Y:0.00 Z:0.000 E:0.000013:24:09.899: N17 G28 Y013:24:10.301: N18 M117 IP:192.168.0.17913:24:10.673: X:0.00 Y:245.00 Z:0.000 E:0.000013:24:18.204: N19 G1 X10.00 F600013:24:2…
-
Thanks for the hint on this very special case. The else belonged to the if above which is in your case skipped causing the error. Have fixed it now.
-
Whats in log before "fatal:G30 probing failed.". z probing has extra info messages if it aborts after going back that show what went wrong. Normally z probe not untriggering is the reason. And yes, it's like a 3d printer since it is a 3d printer fi…
-
Ok your z home and z probe is exactly wrong. z min is for homing to detect absolute minimum ( requiring the area to be empty). z probe is if you want a reference point measured and other stuff. Check M119 - z probe must be L before you start G30 or…
-
For deltas z length is simply to high. SInce you home z max softwrae needs to know how high it is.
-
Please test if it now works. Also software was running it seemd to hang. Have restartet it and now it logs successfull messages again.