Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
I mean our image of course not the official image!
-
The pi image has the streamer already included and preconfigured for easy selection in printer configuration. Just plug in webcam and it should start.
-
From 0.85 manual: Commands are normally visible in the global menu. If you want one to appear only in in the printer menu, add the attribute "slugname" to command. You see the slugname when you select a printer as part of the pa…
-
In check updates you should get now the autoupdate button. Maybe you just were a bit early as we have activated it some hours after providing the links. Otherwise you can always download and install like first install with dpkg.
-
Yes, but there you enter 7 not D7. Or do it in config tool. There you select "Digital Pin 7". That way you are sure what it uses.
-
G28 is adding a lot of moves and troublesome sometimes. In general it is not good to have homing in probe start script. That is assumed anyhow. It is more for activating a servo etc, which is not needed with inductive sensors. Also this all interfer…
-
Natürlich, du machst es ja auch nicht wie vorgesehen. Wie ich sagte du must einen Wizard pushen damit der sichtbar wird und ihm die Aktion continue geben die dann ausgeführt wird. So trickst du etwas herum und bekommst iweder die nebeneffekte.
-
You are right. Also it is the same code it is again one of these mono does it different things.
-
Also it says ramps clone these pins are not ramps compatible soyou need to select MKS Base board directly. If in doubt select fixed Dx pin number instead of symbolic name. For EXT0_EXTRUDER_COOLER_PIN there is no predefined fan so you have to select…
-
Due is critical with spi - you should only use one spi device at the moment with hardware spi. Do you have anything else spi related configured - thermistor maybe? Also if you try later to mount sd does it also fail (to rule out timing at the begi…
-
There is a new option "Try preserver position" that you need to enable. Otherwise slic3r chooses to position them (well it always does but if we merge them to one it keeps positions). This is to allow per object printing whcih is otherwise not possi…
-
Ok, then lets assume spi speed is the cause as default is full speed which is pretty fast since it is a due. Go to SDCard.cpp and search initsd. There are 2 lines that init speed. Possible values are uint8_t const SPI_FULL_SPEED = 0…
-
If you flash the old version does it still fail? I ask because you might have moved cables so communication fails, but since it worked with old this would be a simple test to rule out hardware changes - and since sd card can be very sensible even mo…
-
Yes, flow is bound to distance not speed, so that will still match.
-
You seem to be using a very outdated version of our firmware. We support rambo for a long time already (board 301). Try our config tool for latest version: https://www.repetier.com/firmware/dev/ Also Arduino is at version 1.8.x -1.0 is also ancient…
-
The autoreport was my invention, so server knows it (at least next release but seems it was already in 0.80.3). If you check in server installation dir/firmwares the marlin.xml you see: ^Cap:AUTOREPORT_TEMP:(\d) So when marlin has cap feature on se…
-
Read the docs online and in doc folder on github. Gives some help and then just read the sources. It is quite easy to understand as the aspects are clearly separated and control flow is simple. Read command -> execute command -> run periodic a…
-
We have no software solution for this. But if you put them in parallel either of them would trigger the endstop. Just make sure the wrong one can not trigger if laser is mounted. Alternatively modify the check endstop method. Since dev version has …
-
Fr 2 times I could reproduce this. Then I added a breakpoint to debug the problem and it did not appear any more. In any case I have reported the missing busy problem to marlin and also added a reset timeout on "ok" received. To me it appeared after…
-
In july we plan an update.
-
Thanks for the information and glad you have enough knowledge to update a bootloader to verify this. Hope they have meanwhile upgraded bootloader.
-
It is inside the dll compiled in, so nothing you can change. But since we include that version in near future I will fix that switch for upcoming versions. Thats the classic problem if commandlines change.
-
We can only have one constructor but have different ones to choose from. My var is no constructor just the selector for the right constructor. YOu need to define the pins in macros as well to fill the constructor with your values.
-
Die genannten Funktionen sind nur in der dev version enthalten. Vielleicht bist du auf 0.92.9?
-
Autoleveling needs z axis without backlash or it can in deed also get unwanted artefacts.
-
For 0.85 we have added a detection and replace these chars by _ so nothing bad happens.
-
Ok, lets assume you can not switch user (whcih you should be able as I never saw a linux not doing it). YOu can set the startup code to run as root. nano /lib/systemd/system/RepetierServer.service Then edit the User=repetierserver to root and also …
-
Yes, a better solution is to safe it as 3MF file. The format supports multiple objects so plate would not get split. If it does not work, please let me know so I can fix this for next update. Not sure if i tested this case.
-
The due boards I have get powered from usb so unpowering main power does not disconnect since the communication is still alive and working. Server disconnects as soon as windows removes the serial connection. Are you using programming or native due…
-
First always consider that commands on linux get executed a repetierserver user whcih has no shell. So you always need to sudo the commands and set sudo with no password for the command: All commands get executed with the user account and privilege…