Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Just communication errors I guess. You could try different usb cables and usb speeds if it gets too bad. Sometimes one of these has influence on it. But most printers have an error from time to time. Set firmware to use line numbers in ok. That hel…
-
"When I go below it will turn and go up some." Sure? Don't see why it would go up. I understand stopping under some condition but don't know a part in firmware that goes back except homing/probing of course. What does M119 show? If you see z-min in…
-
Ok, so M141 sets chamber temperature. A good start, but how do I read that. I would expect M105 would include that as well, but having no sample system with chamber, what would smoothieware return when you have a chamber? I ask because you can not …
-
That is only possible in dashboard with basic infos with current way frontend works. But controlling all data of several printers in one page is also hard to read as you normally have not enough place to see everything.
-
Actually the not heating is most likely what triggers the error. If you enable a heater firmware expects to read higher temperatures after a while. When this does not happen something is wrong and for safety it disables them. Typical reason is havin…
-
No tooltip but a confirm message if you want to print one of the red marked files.
-
In WLAN settings select your wifi connection and select IP V4 settings accordion and enter it in the field "Additional Address" and save.
-
Looks even a bit rotated. With homing after pause, which is normally good you have 2 requirements: 1) Homing must be repeatable and precise 2) No G92 with X or Y as homing removes these offsets.
-
How does smoothieware implement heated chamber and report these temperatures? Currently you can only add it as extra extruder so you see the temperature but should avoid using it for extrusion. So far there is no real standard for heated chambers an…
-
The red print icon shows that there is extrusion outside bed so the print may fail due to not fitting to the bed dimensions you entered. This will also happen if you prime outside the allowed region in that version. Next release should ignore primes…
-
Yes, the new version also allows defining a static ip in addition to the one you get from dhcp server.
-
I hope you have set z-min endstop to not defined, otherwise will the z-probe work as min endstop when being triggered. I see this frequently but the thought is not correct at least for a delta. Ther eit is just a z-probe connected to z-min endstop p…
-
You mean " ps aux | grep tier" did not return a file of a running server? Ok, that would mean the server crashed so it was not running at all. The starting script normally would restart a new process in that case. But a crash would also explain why…
-
Ok that explains any strange readings. AUX ADC connector has 3.3V - ADV - GND so everything you need at least for one.
-
As far as I know the arduino ID never changed so all versions should work when you installed the drivers as well. Could it be that Davinci has it's own version of drivers? For windows this is required if the reported ID does not match the one from d…
-
Yes, whatever the problem is it happens while writing the new config and sets file size to 0 so on next startup it tries to load fails and only keeps default config with printer name "unknown". That much is clear. The unclear part is what blocks so…
-
According the docs it does not matter as long as it is 3.3-17V. So you can use the Power pin at the side next to ADC pin. That is what I used for testing my implementation.
-
Thanks for the hint. Have fixed it. Normally I always use the configuration.h as this contains both in one file so I missed this misfunction.
-
Currently you can only change the group in the info dialog of the web frontend. Moving would use this: moveModelFileToGroup(Parameter: groupName (string) = Group name to delete, id = file id to move.Response{ "ok": true }Moves a g-code model file…
-
Does not sound good. We do no low level access so I do not think it is the host directly. But we use OpenGL and that uses graphic infrastructure in the end, so that may be a candidate. Only othe rhardware is using the official serial port class from…
-
Easiest way would be to power adafruit and measure voltage yourself. Temperature = (Vout - 1.25) / 0.005 V Measure while connected to board and also when not connected to board. If it is unconnected correct it should also be when connected, but b…
-
That is more a firmware issue. Normally a firmware should only block moves in direction of blocked endstop but all othe rmoves should not be blocked. If you have autolevelign enabled then xy moves may lower Z so that might get blocked, but a pure up…
-
Very soon. more or less finished and only running some tests to verify it works as expected.
-
Here you find description of gcode commands: http://www.reprap.org/wiki/Gcodes For extrusion G1, G92 are th emost relevant.
-
Ok, I see it happens in freeing OpenGL resources. I also see that this path may be executed outside main thread which could be a problem. So for next release 2.0.2 I have now ensured this will run in main thread instead. If it persists in 2.0.2 let…
-
In theory yes, but that is likely to cause collisions and errors with all the params we already add to the call. I do not think they will change that so frequently so we need that.
-
EIgentlich geht es hier um Repetier-Server wo man gcodes ablegen kann:-) Beim host gibt es ja nur gcodes wenn man ein STl gesliced hat. Wenn es nicht erscheint hat man für gewöhnlich oben in der Toolbar die Filamentanzeige ausgeschaltet. Spart RAM …
-
Yes we switched that since the old system does not work any more for all printers. My printer for example ends with z=10 after homing for safety reasons. Before it would read a coordinate output from firmware to set coordinates, which is why it work…
-
You could be right. Javascript want to access the name of a extruder from configuration and fails, so if you have 2 extruder and only one configured that might in deed the reason. You could just define 2 extruders in the configuration and the error …