Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Did you add your user to dialout group? Only with membership in that group you can access serial devices. Also you should better use your AppImage host version as it already contains a working mono and slicers. It even has a command to add you to t…
-
Here you can see very clearly 17:35:33.845 : k?????j which wanted to be a "ok 61800" or something like that. It's not happening that often but form time to time the serial communication seems to be that much out of sync that it reads different char…
-
You should enable logging in such cases and see what error messages you see. A pi is very sensitive to power and if printers draw power from pi as well it gets even worse, so make sure power is ok. If you have a display connected you will see a rain…
-
Depends on what you want to do. Host has also gcode verification and gcode editing with preview. But if slicing is all you need, then no except different handling.
-
Not sure arduino tells you data usage. Just start by only selecting your favourite language and no other languages. That would always fit. The LCD problem points eventually to same problem. The bars show that it is configured correct only strings a…
-
Always
-
Sorry, don't understand what you try to say.
-
I'm not sure what is wrong here, but I would at first check the free ram. Should be at least 900 bytes or you get very starnge and wrong behaviour from memory overwrites. That might explain why nothing makes sense at the moment. Reduce subsegments …
-
Ok, simple example 2 extruder. X offset E0 has 0, E1 = 40 Homing with E0: home x then move 40mm right so selecting E1 which moves 40mm left is no problem. Homing with E1: home x then no move since 40-40 is 0. Activating E0 will move 40mm right Rega…
-
Server can handle several printers at once. 4 printers on a raspberry pi is no real problem. It was designed to server multiple printers simultaneously.
-
I'm wondering about this line 18:51:58.386 : Error: [steps] makes no sense as well as your second problem that disabling endstop changes temperature. How big is your data section? It must be smaller then 60KB or you will get very strange errors, s…
-
Sorry, no education license. But remember you get 5 installations and if you have several servers for education this acts also like a discount.
-
From the error it looks like something in CuraEngine settings has gone wrong. You could try deleting the setting (or copying somewhere else). Check in work directory (AppData/local/RepetierHost) the CuraEngine folder. Rename it and start host to see…
-
Store sliced file and load it into Octoprint. A connector like our repetier-server connector is not planned.
-
The server works completely fine without internet connection, with just some minor things not working - automatic updates - activating a license as there you need to talk to license server. After activation is done, no internet is required. - Trial …
-
I have checked the code and in the current version filamentchange does not move the extruder at all. Are you using an older version then 0.86.2 ?
-
PID is just to hold a temperature. If you start printing faster it should adjust power up to 255 also you never should work at the peak - then you are simply too close to the limit. Check in host/server what the heater output is. Also note that ther…
-
First layer is just first height where you move and extruder. Check g-code to see at which z height it is. Normally slicers do this at first layer height which is > 0 hopefully. Also make sure endstops and bed are calibrated right so 0.2mm has a…
-
Especially if firmware would wait to reach 0°C it waits until winter and windows open with M190 S0 :-)
-
If firmware responds with ok it accepted the g code and should do what it is supposed to do with the gcode. If it does not wait with M109 it is a firmware issue as firmware is responsible to wait until temp. is reached. You could test communication…
-
Ok, so that being send should make printer wait until temperature is reached.
-
What's the sense of the c++ code you show? It is not ok to switch extruders that way. YOu need to explicitly call selectExtruder function, otherwise it will not adjust to offsets. That function also sets currentExtruder.
-
You can also simply go up with z before testing and not more at z=0.
-
Buffer used:0 Enforced free byte:340 lines stored:0 that is strange - why should server need 340 byte to send a command. No firmware has such a big buffer and no gcode should need it. Only comments could be that long but do not get send. Any idea w…
-
Guess the warning window got focus and when it was removed th etopmost app was fusion as it was previously active.. Will see if I can reproduce it and maybe actively activate host main window after closing.
-
Did you us ethe right temperture command for heating? M104 will not wait and M109 should wait. So in slicer you should set M109 for this and of course hope that te printer has implemented it correctly.
-
If teh current used is too much it would trigger. But that is for RAMPS board and I do not knwo what you have.
-
Sure you have selected the right processor. In image I see Atmega644P and most boards use Meag2560.
-
Position is where you want to extrude and the offsets are used to add extra move so the nozzle of active extruder is over the defined position. And since you should be allowed to switch extruders after homing it might add a offset depending on homin…
-
Depends on th eboard. RAMPS for example uses a polyfuse that resets after a time when unpowered. If that triggers xyz will also not move as it has one fuse for bed and one for all steppers and extruders. I'm no Marlin expert, so can not say what it…