Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
This (glGenBuffers ) is a function of OpenGL and it is missing. One reason coul dbe a very old openGL version. It looks like it is the host sending this message, so do you see the filament/models? What is the OpenGL version. You see it in the host l…
-
If it moves for a time it is working. By default it moves for 2*height but if e.g. steps per mm is too low this might stop before hitting end stop. So test if a 10mm up move goes up 10mm. And check what the set z length in eeprom is.
-
Try restarting the server once after setting it. There is a possibility for a block that prevents it setting correctly, which I have already fixed for next update.
-
The only help for gcodes are the groups so each list is of limited length. These lists were never meant to be excessively long also I learned some users never delete a printed gcode, so we added the tags. Ordering in touch screen should be newest fi…
-
No, that is not possible. You can only do it only separately.
-
Don't know about such a place. We want to add such thing in the future. So far I think google might be the best chance to fast find a corexy config and then tweak it to your board/hardware.
-
It is already implemented, but unfortunately the regular expression in Marlin.xml in firmwares was wrong. Should be [eE]cho:enqueueing "M600" will be fixed in next release or you chang eit yourself manually and restart.
-
Ich nehme an wir reden hier von Version 0.90.1. Nach welcher Aktion verschwindet denn die Druckereinstellung? Normalerweise wirst du die Konfiguration nicht ständig ändern und daher sollten die Einstellungen auch bleiben. Wenn es wieder passiert k…
-
You need to enable z probe and autoleveling to use it #define FEATURE_Z_PROBE 1 #define FEATURE_AUTOLEVEL 1 Then you can check if values amke sense e.g. M119 to see if z probe is giving correct signals. If you use z min homing I assume z probe is …
-
At least we do not have sample configs for it. So setting the drive system to corexy and find the right combination of drive system and motor direction would be faster then waiting for a user having a config exactly for this printer.
-
Middle of bed is at least a quite safe position for everything to start. But you still need also to ensure that the measured points lie inside allowed region. For homing you select a order with preheat. Here you can select a homing position for z h…
-
Frage ist warum müssen die URLs neu eingegeben werden. Sind sie plötzlich falsch also hat sich die IP geändert oder sind sie weg. Ist dann auch die Webcam als ganzes weg?
-
You can only print to local printer, but a remote server can use a remote project so you can still print the gcode only from the frontend at the remote printer using this project remotely.
-
Open eeprom editor and see the weights for the 16 virtual extruders. The 3 extruders will be mixed regarding the mixing ratio set.
-
Login using ssh export DISPLAY=:0 xinput_calibrator display could also be :1 in some cases. Once you have set the display you can run any command using display from commandline and it will show on the display you have set.
-
Z probe handling evolved over the versions, so you can not expect it to work the same on all. Important is to remember that activating moves it 53mm left and 13mm top so that must be possible at current position and also be valid for all positions y…
-
O, so if most work what is about the length of the lines? This has 89 chars. Input buffer on most firmwares is 127 byte, but if it would be 63byte that would be a problem. So do other lines work with similar length?
-
G0/G1 are identical. Travel acceleration is used when there is no extrusion.
-
I'm not sure it works on that board. We require ARMV7 but also debian linux and a sd card with 4GB. This looks more like a fast programmable board like Arduino without sd card. But if it has linux and 1GB RAM with sd card try it.
-
If you use z probe for homing you need to use a homing order with preheat. Then you can select to pre raise (required so z probe is not triggered at start) and you can set a psoition so enabling z offset is possible. In all other cases it will not …
-
In M106/M107 you can set fan number with P so nothing or P0 is fan 1 and P1 is fan 2.
-
Your steps per mm seem to be too high if you get such a difference. The Bed height map only works for repetier-firmware, so check if that is on your printer if you use it. Also always have a good look at the log so you see what is going on. You need…
-
First check with ls -l /dev/video* if both appear. Are you using the latest pi image which has new webcam handling. It uses webcams listen in /dev/v4l/by-id/ so check with ls /dev/v4l/by-id/ You can also change it to use webcam by path whcih might…
-
You can already copy them to the printer models. Will think about a print button moving it to print queue or even starting print if the queue is empty.
-
It is identical as RAMPS 1.4 regarding pins, so just use that board.
-
Schon merkwürdig. Zeigt aber da sich zumindest nicht ganz verrückt bin, denn ich sehe bei mir die richtigen Heizbett Temperaturen auch. Muss also nur noch herausfinden warum es manchmal nicht geht:-( Möglicherweise ein Problem beim umschreiben der K…
-
G30 measures and sets but doe snot change end position. But now 0 is defined and you can run G0 Z0 F200 to go to the trigger position or which height you want. There are so many things you might want that you use R and H in G30 to define that and th…
-
G-Code requires each letter to be only present once per line and N657 L81.2 L100 L100 L100 L100 L100 L100 L100 L100 L100 L100 L57.6 L0 L0 L0 L0 L0 L0*117 has many L values. So make sure you have latest host which accepts illegal gcodes and sends the…
-
Ok, I'm back. It is right that you must wait. Here the pauseState meanings: 0 = unpaused, 1 = paused, waiting cooldown, 2 = cooleddown (if enabled), 3 = heating, 4 = heated, waiting for continue, continue.So only on state 1 and 4 it …