Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Da er noch timeout ausgibt steht die Verbindung zur firmware noch, aber wie es aussieht erhält er keine Antworten mehr von der firmware. Es gab einen ähnlichen Fehler in Versionen < 0.86.2 das zu einem deadlock führte bei manchen users. Das ist a…
-
What is the issue with that? Just do it if your firmware supports it. All you need is place object on left side and add acivate ditto mode gcode.
-
We have a thermo controlled fan. The hotter the more pwm it gets. Just put the peltier on it instead. Control is quite liniear one treshhold temperature is reached so not sure how good it will work. It will surely not hold the temperature as that is…
-
Convert IPrintJob to PrintJob and and read value computedPrintingTime which is estimated printing time in seconds when the job starts.
-
One thing i had to think about is why you always test/talk about the diagonal move. Do the side moves work fast and it only happens on diagonal change?
-
It is the firmware trimming filenames in this case. Host just takes what it gets. Limits are define din repetier.h #define MAX_VFAT_ENTRIES (2) /** Total size of the buffer used to store the long filenames */ #define LONG_FILENAME…
-
Lösch die Zeilen im Quellcode die das machen.
-
Not really unusual the code. The only thing I see is that you set official feedrate to 1002 in these cases which is 16.7mm/s. If that speed would be used it would take 4.4s and not 20s, so this is also not the case. And if oyu have no start/end gcod…
-
Er fährt 2 mal gegen den endstop. Einmal mit homing speed und dann noch mal mit homigspeed/Reduction factor. Bei factor 2 also mit halber Geschwindigkeit. Ist für erhöhte genaugkeit und damit man trotzdem schnell am Anfang fahren kann.
-
Ja würde da passen. Mal sehen ob ich dran denke:-)
-
Just think what it is and then it is easy to calculate it the way you want. There are many ways to get this value. z probe heigh = distance bed to nozzle when z probe triggers from low to high.
-
Der aktuelle layer ist im log zu sehen wenn man druckt, wenn das gemeint ist.
-
Double/quadstepping combine 2/4 steps in fast succession and then do the next pause. So it is like having 1/16 or 1/8 microstepping at high speeds while having 1/32 on slow speeds. It is the only way to get higher speeds on slow cpus. I do not think…
-
bossac is the uploader for due. It looks like was compiled on a newer linux version so it requires also a newer libstdc++ version as you have installed on your 4 year old OS. If you have a pro version of our repetier-server you can use the firmware …
-
Yes 3. is what I assume will happen. isHomedAll means if you homed before so the position is valid and known. A smallest gcode causing the slow move would be helpful to analyse. I have seen such moves when the stored and real position differ. Probl…
-
Check M119 is showing L and not blocking anything. Check eeprom to contains useful values. Illegal values cal result in not moving. And of course make sure you have good temperatures which I forgot. Also I'm quite sure that this is no problem for xy…
-
You will see one of these moves as offset is activated and deactivated, so I assume it is correct now.
-
You can move it, but there are some constraints, e.g. if ALWAYS_CHECK_ENDSTOPS is 1 you need endstops not triggering connected. You can also not move outside print range so assuming home is 0,0,0 you can only go to positive direction and then to neg…
-
Ok in commands.cpp you have case 106: // M106 Fan On if(com->hasI()) { if(com->I != 0) Printer::flag2 |= PRINTER_FLAG2_IGNORE_M106_COMMAND; else Printer:…
-
Interessante alternative Lösung zu dem was ich sagte. Hierfür sind aber die notwendigen werte (Geräte Ids) nicht allgemein vorprogrammierbar. Man müsste das Mapping also schon bei der Konfiguration irgendwie machen. Aber die Lösung an sich finde ich…
-
Die Skripte kann man leicht an den Drucker binden, also 4 scripte für 4 Steckdosen. Ob man allerdings 4 von den Steckdosen so steuern kann, kann ich nicht sagen. Brauchen ja eigene Pins und unterschiedliche Frequenzen oder wie auch immer die festste…
-
YOu mean th eproblem was not solved after running it? Both curaengine versions are in subdirectories of the tar file. The appimage is only working for 64bit so only has one version at correct place anyway.
-
Zumindest ist klar das Linux hier die Verbindung trennt und dann der Server natürlich nicht mehr kommunizieren kann und sie auch schließt. May 9 06:45:22 Repetier-Server kernel: [ 2350.886401] ftdi_sio ttyUSB0: error from flowcontrol urb scheint …
-
Yes, that is what I meant it also says the reason - homing failed. This is especially on deltas an issue. The function tests if all endstops get triggered and untriggered as expected. So if you see this on a delta this did not happen. Normally you n…
-
Did you run the configureFirst.sh script on linux first? Or do you use appimage file? You need first to create the right curaengine file for 32 or 64 bit and some more stuff which the command does.
-
Yes, max feedrate is more for retraction. During print the speed is coupled to xy move speed and depends on that and layer height. So if you need to limit real extrusion you need to tell slicer about that limit by reducing xy print speed or layer he…
-
That code hasn't changed for some years. All pwm use the same function including heaters and they go all 0-255 for intensity. Will recheck code if I see a limit to 100.
-
No, but we will publish in may as it looks and I already wrote the code that hopefully will work. Will at least test with a fake klippy printer.
-
Think that when probing z probe is active so all moves have xy offset added to center position. This changes the rectangle you can reach with active probe. So if center can reach -100,-100 until 100,100 and offset is 20,30 you can only reach -80,-7…
-
You need to tell xserver (graphic interface on linux) to use the waveshare display. By default dispaly :0 is used and I think that display has number :1. Try googling xserver display waveshare or similar to find out how to do it.