Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
ALWAYS_CHECK_ENDSTOPS must be 0 to not test end stops during print and hence prevent shifts from false signals caused by interference.
-
Wir planen fürs nächste Release ein Monitor Skript einzufügen. Das wäre ein möglicher Anwendungsfall um solch ein Problem zu lösen. Das wäre dann eine kleine Lua Erweiterung in der man das programmieren kann. Geht jetzt schon mit einem externen Skri…
-
No, currently not implemented for touch screen, but a good idea. Will add it for next release.
-
Also parallel communication from sd card and host should work it is not a good idea to have 2 prints running the same time.
-
Depends on how you measure z reference. If you have bed as Z=0 and use a probe to test surface as 0 you use G30: - G30 P - Single z-probe at current position P = 1 first measurement, P = 2 Last measurement P = 0 or 3 first and last m…
-
You still need to isolate the command causing the problem. In the log again 05:51:04.563 : N14 M530 S1 L15*5805:51:04.563 : N15 M531 Tag New Rnd Ben*1505:51:04.563 : N16 M117 ETE 24m 59s*11505:51:04.563 : N17 M532 X0 L0*505:51:04.579 : N18 M107*280…
-
It is there: Extruders share same heater from extruder 0 definition (SHARED_EXTRUDER_HEATER) and -1 is same as "Disabled/no pin assigned" which you can set already. For sensor use same pin/type as for extruder 1.
-
The log is incomplete as it does not contain ack/M105 messages so it is hard to see what is going on. What I see is 15:53:55.150 : N18 M190 S55*9715:53:55.150 : N19 M104 S202*9315:53:55.165 : N20 G28*3315:53:55.165 : N21 G1 Z5 F5000*5515:53:57.212 …
-
Thanks. Have adjusted the space for next update.
-
The server will have no problems with this. I'm not sure if klipper can run twice on the pi and how much cpu the klipper process takes. You need to teach klipper at least to use different port names for one instance and set the port in server for th…
-
Thanks. Will be updated with the next update.
-
M117 is sending times to display. That is the first command not getting a response so maybe smoothieware has problem with this. You can disable sending the M117 in host. Disable the Printer option "Send ETA to printer display" to remove it and retes…
-
You can not attach files in forum. If it is not too much just paste in comment alternatively use pastebin or alternative or dropbox to show extra files.
-
We send the ack "ok" when the command has been moved from input buffer. Executing happens shortly after this. This makes communication a bit faster then waiting with "ok" until command is executed.
-
Host remember pause start position so nothing fancy needed. I normally just add a G1 move so I can reach the object best which is for me a move to y-max. Temperature normally stays on anyway. G1 X0 Y200 F12000 would therefore everything you should …
-
I personally like the RADDS boards whcih is also what I use for development of due. Non arduino is currently not planned.
-
Yes, that sounds like the bad behaviour of the first batch. So make sure to at least have watchdog enabled for safety.
-
I'm quite sure someone had the same problem just do not remember reason/solution. Capacitor would at least stabilize the voltage at the pin so should at least not hurd and may in deed help. There is always some variance which is why we average the v…
-
That is too vague. Can you post a log with all lines when the problem happens so I can see what is happening. I have no problems with 1.0.4 so I guess it is either config or bad values in eeprom.
-
What you describe can happen if you exclude a reagion. The next release will filter these z moves as well as the exclude function is now more intelligent. For normal prints without exclusion I have not seen this happen on my MK3.
-
I have added it to DisplayList.h at line 349 for next update (dev version) but your content is not for repetier-firmware. That is marlin pin naming. I have now added #elif MOTHERBOARD = 403 || MOTHERBOARD = 404 // ramps-fd lcd …
-
Reproduzieren konnte ich es nicht. Ist vermutlich ein problem mit dem Browsercache der dann das alte javascript noch nutzt. Wenn du den cache löscht würde es vermutlich wieder klappen.
-
The bed is also not looking good. The PT-100 also swings too much even if you ignore the dips. So I'd say anything reading analog values is not as stable as it normally is. So I think the Vref which is used to get voltage to value conversion is some…
-
Yes, small programs or wizards that can be written and shared would be something I really like to have in the end. I mean with some gui in addition. Maybe I get a good idea how to allow writing this maybe as a simplified javascript code that I can l…
-
The mac version was never tested or meant to work with the mac version. Especially unknown infill patterns come as a source of problems in my mind in that combination.
-
If you use the gcode from slicer you should not use M3 that confuses the firmware as it then mixes extrusion and M3. I think slicers only use G1 so laser will be always on from this.
-
Best with such problems is to check in console with commands/ack enabled. Then you see what gets send to printer. As far as I know it shoudl send one of these commands from the xml file: M355 S1 M355 S0
-
The script solution does not sound good to me. I feel it is too hacky. But I guess the minimal scripts will come some time.
-
I can not follow your code changes. Can you post a simple non working sample and tell where laser is on and off. You say you use M3 and talk about retraction and extrusion. It is either using increasing E values or M3/M5. Been a while I used my lase…
-
I always used /tmp/printer but you need a recent klipper version - older versions did not set right permissions to that file. Maybe you have that problem? Speed should not matter as it is only a pipe. Did you test if klipper it self works correctly…