Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Ok, das Problem mit den Babysteps hab ich gefunden, wird beim nächsten update behoben. Hatte die Buttons von Move kopiert die beim Druck nicht gehen dürfen. Hier ist es aber gewollt. Danke. Den Fehler mit der 1 haben wir auch fürs update behoben. B…
-
Yes, you are right. Looking deeper in the code you see that PrepareForProbing is operating in real positions while G32 afterwards disables rotation correction so for Z>0 positions can change to illegal positions. Have added 1mm now for next updat…
-
in server Printer-Settings under Connection are 2 Dropdowns for DTR and RTS where you set it. You need to connect using server and host must then use the Repetier-Server connector, not the serial connector.
-
According to https://reprap.org/wiki/G-code#M290:_Babystepping you need marlin 1.1.7 or higher for the gcode babystep command M290 which is being used. You should see the distance in display change and if you watch console you will see M290 being se…
-
I have nothing against russians, just do not understand the language. Same USB cable is fine, but PC and raspberry are different OS and also different hardware so assuming they do the same in case of noise/errors over usb is wrong. I'd bet that ser…
-
In Printer::prepareForProbing after homing and setting z height you can add moveToReal(xMin + 0.5 * xLength, yMin + 0.5 * yLength, IGNORE_COORDINATE,homingFeedrate[X_AXIS],false);Have this already done for next update, just need tes…
-
Have written it now. You can add ;@make_snapshot camid where you like. It adds to snapshots made anyway, but I also added a 4th type to only make snapshots where the command is to solve the double snapshot problem.
-
Not in firmware. I have it running with our repetier-server. But it is very special and has a own controller with own commands, so this is nothing easy to add in firmware.
-
Temperature too hot means you exceeded the allowed max. temperature from configuratuin.h. You can increase that or run M303 at lower temp. e.g. 180. What I wonder is your limit of PID Max to 128. If you use 24V on 12V elements the limit is 64. Powe…
-
Notification contains always the printer name so you know which printer is meant. Server knows the printers and which needs a notification:-)
-
Checking it I saw it is using HOMING_FEEDRATE_Z but not the eeprom value. Will fix it for next dev update. Anyhow it uses that value for th eback move as stored in configuration.h Think of 3 measured height 2,2.1,2.3 average = (2+2.1+2.3)/3 = 2,133…
-
TCP connection only works when communication is identical with serial communication. Firmware with TCP support often also have a web interface - that will not work. You need to use the port for serial communication. RepRapFirmware e.g. has different…
-
You can only enable it for all printers anyway. So just enter your push key, select notifications you want and enable it. Use test message to test if it works.
-
Is that the serial connection? That is beyond my knowledge - that is electronics not programming:-)
-
Not even G28 worked? That normally works fine as it assumes nothing.
-
You know G32 does what you think G29 should do? G29 is measuring average height, G32 is autoleveling! Yes, starting at wrong position can cause the error. In V2 firmware this gets autocorrections. Maybe I should add a move to bed center in V1 as in…
-
Does server run on same pc as host? And please answer in english don't speak russian.
-
#define ENABLE_BACKLASH_COMPENSATION 0 is better. With 1 you add extra moves which is a bad idea anyway. That might also cause the problem.
-
Actually that is the difference between lazy and non lazy. non lazy reacts on extruder switches so it can not know next position and goes to current position. Lazy keeps new extruder parked until an extrusion is required and only then unparks making…
-
Then try it. On github there is even a sample config for dual x printer. Also waiting for the dual x printer to arrive so I can continue testing, but as far as I know it is working good. Vendor is also planning to use V2 for the printer.
-
You see that after 16:21:58.266: N24564 G1 X82.566 Y75.205 E10.25035 no "ok" messages from printer are received. Your timeout seems low so I assume your printer implements busy to signal slow commands. If there was no slow command before the serial …
-
Kommt darauf an ob die Firmware M290 für babysteps implementiert hat. Grundsätzlich must du aber auch berücksichtigen das die Befehle verzögert bearbeitet werden, kann also schon mal 20 Bewegungen dauern bis die ausgeführt werden.
-
Run G28 G1 Z0 and check height. If that is wrong your endstop is not adjusted correct. If printer uses a z probe for homing the distance for it is not calibrated correct. In gcode preview you would see if the gcode generated has a 3mm gap, which …
-
That was my solution to 2. Only ;@snapshot ;0 should be ;@snapshot 0 The snapshot makes the snapshot where it is entered for the webcam selected (in case you have more then one). It just does not add the fixed position code. In fact it is used insi…
-
No, pin number is not relevant as long as you enter it in config. What MartinH wanted to say is that z probe is always sending signals, but with ALWAYS_CHECK_ENDSTOPS 0 the signal is ignored when not homing or probing to solve the approximation prob…
-
Drucken etc funktionieren übrigens trotzdem, nur die Temperaturanzeige spinnt halt.
-
pi@FelixWhite:~ $ sudo ifconfig | grep wlan0 wlan0: flags=4163 mtu 1500would be what you need so that the network appears. Please try connecting manually. sudo service RepetierServer stopsudo /usr/local/Repetier-Setup/bin/manageWif…
-
Since firmware is responsible to limit speeds it is surely the reason, but question is which situation causes the problem so we know what the error is. You can try #define ALTERNATIVE_JERK#define REDUCE_ON_SMALL_SEGMENTS which uses alternative solu…
-
Good that you solved it.
-
Do you have ALYWAYS_CHECK_ENDSTOPS 0? It is important that endstops are never touched during print. If you have rotated bed it might hit a endstop at some height preventing move in opposite direction. Just an idea, but it would explain it at least a…