Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Log stops here G1 X110.592 Y138.873 E0.0413G1 X110.354 Y139.111 E0.0497G92 E0.0000G1 E-3.2000 F3600; process Process2; layer 150, Z = 0.200M106 S0; feature skirt; tool H0.200 W0.550G1 Z18.160 F1200G1 X177.725 Y125.602 F10800G1 Z0.200 F1200G1 E0.000…
-
So left side extruder and right side laser? The 2 extruders on one side would be a problem at the moment. Also with single nozzle not a big one I think. But would need to map tools to axis somehow. We can tweak the code and then you can test it if y…
-
Did you enable pullup when you are now using mechanical endstops. Without the signal is not stable I think. But that is all and since it works on first home it is strange to not work any more. What printer type is that on which board? Memory proble…
-
" but i have not been able to get it to turn off again" assuming you mean on, what was the problem? Did it stop responding with firmware then? BTW, how does your temperature response look like and what did you define in extruder as sensor? As I see…
-
Why should it extrude 25mm in 2 seconds. Here a reduced part of the log < 19:36:55.506: N135683 G1 X125.254 Y122.526 E14.39532....> 20:02:27.822: T:233.00 /230 B:65.10 /65 B@:0 @:76< 20:02:27.944: N135846 M513 ; Setze das Jam Detect Signal…
-
What do you mean with view in lua? Lua is used server side and not connected to a display? The other thing is that printer state is currently not available in lua api. I have added the state property for next update 0.93.1 which will contain the pr…
-
During print you might have it disabled (ALWAYS_CHECK_ENDSTOPS) but during second and third homing endstops will always be tested. Also M119 will always show current endstop state. So if you manually trigger/untigger and test with M119 it should cha…
-
No SKR V1.3 is not due compatible. We are working on more processors, but for now I'd go with a RADDS + Due to be safe. Hope to have RUMBA32 working beginning of next year. Already bought one. Would be easier to use with TMC2130 which are already su…
-
Ok reinstalled old server to test my self. Went to web gui->check updates. Saw update and clicked autoupdate. It downloaded the new release and then I got "oops connection lost..." during the installation and after a while it reloaded with new ve…
-
Wrong analog input might be a reason. If not connected they show hottest or coolest temperature in table. Same goes if the checked analog pin is not the one where the sensor is connected to. Not that the ramps has so many inputs. Also make sure that…
-
That can not work in V1. You need to drive 4 motors with 3 coordinates, so you need an independent 4th motor that does not exist in V1. That is why I said to do it in V2 where we support up to 7 independent motors. There dual x uses A axis as second…
-
If autoupdater sees the 0.93 (which is enabled) clicking on autoupdate should work if nothing blocks the download.
-
Use the sample implementation in dualx/stacker x2 to get started. That is a normal dual x implementation. What is with the laser? Do you have one extruder plus laser so 2 tools on one side? That wasn't tested or implemented at the moment. Structure…
-
Ja in Druckereinstellungen -> Manuelle Steuerung invertieren wählen. Bin aber nicht 100% sicher ob das auch am touchdisplay berücksichtigt wird. Wenn nicht bitte melden dann ändere ich das fürs nächste update.
-
You always get a response from server for each request, but not all contain data. When you get them that just means server has executed it. In case of M400 send it means it was added to the manual gcode list to be executed. It does not mean that it …
-
Not really. Server activates autoreporting at connection when it sees this or queries every second. Should not be a problem. Maybe you just think it as it is a frequent thing happening. Anyhow if you have no heaters in firmware Commands::printTemper…
-
Ok, maybe G1 F7800 comes from the snapshot restoring old speed also this is only required after moves but does not explain the repetitions. But maybe it is as you said the second webcam that fails from not being there so it repeats over and over sin…
-
Don't see a temperature problem in failed log. I see it disables extruder after 10 minutes and then it enables it and waits for target temperature and continues. What I find irritating is this 8:51:48.615: ok 2289> 8:51:48.615: ok 2290> 8…
-
That is bad. Looks like usb serial stack hangs so server keeps it open but gets no more responses. Known problem but it is outside of the server. Either linux or printer converter are stuck on communication here. Is that on a raspberry pi? Then make…
-
You never really know where head is since firmware also buffers moves to execute them after moves are send. The only real solution to be sure it is at a position is to flood firmware with 40 M400 commands. When they are all send you know the positio…
-
Actually due version uses RFDoubleSerial in that case which in it's begin implementation calls both begin statements, so implementation there differs a bit which is also why it worked.
-
You must activate them in global settings->print reports. Then the next print will create it. They do not get created for old prints. The data they contain only exist just after print is finished. In history you then see a new pdf button to view…
-
So you use the B part just twice to have to x axis I guess? Would at least be no big deal to change the motor equation for that and use it with the regular dual x code and your little mod. V2 is already usable if your printer uses only supported ha…
-
The temperature control is all I see and all needed as step/dir/enable is using direct pins I guess. Looks like you only want pwm value from firmware and get sensor read. All is in Extruder.cpp. Only thing is your loop is bad on slave side. You wil…
-
I never heard about such a design, so it is not implemented I think. How does that work with 2 independent X axis? Apart from not knowing what it needs I think with the dual X implementation in V2 firmware it should be easy to solve. Depends a bit …
-
See you message box.
-
Do you mean this: static inline void serialSetBaudrate(long baud) { RFSERIAL.begin(baud);#if BLUETOOTH_SERIAL > 0 && defined(EXTERNALSERIAL) RFSERIAL2.begin(BLUETOOTH_BAUD);#endif } in HAL.h?
-
Great that you found it. Any chance you tell me what I need to modify to make it work. Did not understand what you mean with the required change.
-
WinForms do not make it easy to add additional widgets. Doing it where you want is very hard and needs exceptional good knowledge on how to modify existing datastructures to modify them. Nothing for beginner. Plugins have points where they can add …
-
Are they in the slic3r start/end script? We have no influence about how slic3r handles them - just escape it as slic3r needs them. Alternativlely you could add them to hosts start/end script. There no escaping is required. Using / instead of \ on …