Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • With S255/S0 you should set digital values. I just checked the due version and it differs. It sets hardware PWM breaking firmware. Please remove analogWrite(pin_number, com->S); so only the digital version stays. Then pin 11 should also work.
  • Ensure your slicer profile has the height set. Then check in host if the override is active, where you can set different layer heights. One of them has 0.1 in your case.
  • Jam detection is not endstop, so M119 will never report them. Jam commands are - M513 - Clear all jam marker. - M600 Change filament - M602 S P- Debug jam control (S) Disable jam control (P). If enabled it will log signal changes…
  • As I said, for cartesian printers it does not matter which offset your left extruder has. Only thing matters is difference between left and right extruder. When you switch extruders they should move so that the new active extruder is over the positi…
  • V2 does currently have no support for 8 bit hardware. Need to write the drivers for hat.
  • You can open repetier-host with stl as parameter and would exactly do that. You can also associate stl files with repetier-host so double click on stl file opens it in host (preferences in host). All you need to do is convince F360 to open stl with …
  • In host/server temperature graph you see if output is using 100%. If it is your power is just too low. 25W with some cooling of heat zone can really be just enough for pla.
  • You can not have both. z min endstop and autoleveling does not work, only if z min IS the z probe. That does not mean you need to autolevel - firmware will use z probe as z min endstop when homing. But z min endstop prevents moves below it's trigger…
  • Looks normal and I see no real reason it should not work inside it. It is implemented in Commands.com near line 1754 case 42: //M42 -Change pin status via gcode         if (com->hasP()) {             int pin_number = com->P;…
  • M321 just makes it use latest autolevel result, but is not required if you have already enabled it and autoleveling using G32 S2 enables it and stores it in eeprom, so no need to repeat. G29 is not autoleveling, it is just measuring z as average of …
  • Check you max pid setting for the extruder. It is possible to limit max. power by setting them to < 255. So in that case go up to 255 and get some more power which leads to higher possible temperatures..
  • What printer type do you have? What are the positions you want and what did you enter? Offsets are in steps not mm so make sure to multiply with steps per mm. Cartesian printers will always home the same regardless of the left extruders offset. The…
  • What exactly did you put into the gcodes for select/deselect?
  • Currently only RADDS/Graphic display is tested and configured in V2. See in boards/radds.j near end you have // Controller related default pins #ifndef CUSTOM_CONTROLLER_PINS#if FEATURE_CONTROLLER == CONTROLLER_SPARKLCD #define UI_DISPLAY_RS_PIN 25…
  • No, but next release is nearly finished and there my solution with password hopefully works. Link is really good if I someone does not know the link.
  • No, if everything is configured correctly you go G1 X100 Y100 Z20  z should be what you have set as z probe bed distance. Then just run G33 and it will measure all points automatically. But as I said BLtouch has it's own requirements to distances an…
  • Multi extruder with shared heater can also share the same thermistor input, also it makes no difference if you use fake or real sensor for them.
  • That is right. Cura is a standalone software not integrated in host. We have a older CuraEngine integrated instead. Latest CuraEngine is not compatible any more. Also it is planned to integrate new format there is no fixed time when this will happen.
  • V2 already is working for due based boards and some combination. But I'm aware that we need some more modules to make it working for the majority of problems. Just check the dev2 branch on github and our documentation https://docfirmwarev2.repetier.…
  • Hope I think of it when making the next release.
  • I think the visualization is fine. Just full video memory or generic Microsoft OpenGL driver cause it to crash. What do you see in log at startup for the driver? How much memory does your graphic card have?
  • Ok I understand that you have a heater and a temp sensor for chamber controlling the heater. A fan is required to get even distribution in chamber. Makes sense. What I'm unsure about is the housing thermistor. What is the sense here. Is it somewher…
  • Sure. G33 is made for z probe to measure and store the bending automatically. You cal also manupulate the settings manually. Just check config - it uses it's own area definition and grid for this. It does not use the G32 settings!
  • https://www.repetier-server.com/download-repetier-server/ is our download page. With 3.5" displays it is quite normal that only console appears. You need to configure x server to show on the display. By default it shows xserver to HDMI output. See …
  • You are right. The timelapse function uses it's own version to grab picture and that was not updated to use the user:password trick. Will fix this for next update. Your examples has it double - the problem is only with the user:password@ variant so…
  • You do G33 after G32. The reason is that you want it to swing around 0. If you don't you might get corrections much too high. If your bed is very good leveled you can do that. But check G33 L0 to see if it swings around 0 and does not have an offset…
  • Yes ZHold is the set value for z probe height. And yes I think the formula is correct.
  • In printer configuration you need to check if you see in webcam section the static and motion mjpg. If you don't see them there timelapse will not work. A typical error I often see is that users enter the url where the image appears, but you need th…
  • First to start xserver select in raspi-config to boot console with autologin. NOT graphical interface. We have modified the login to autostart xserver on login. After linux updates or if you modified it the setting can get lost. The default is that…
  • What sensor do you use for z-probe? As I said it should switch before z hit bed. You could try this first to see if it is still valid. You said you also moved z probe down so if you moved it too much it might happen. But that would mean the extruder…