Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Ok good progress. Hardware SPI is what we use for sd card reading. It is very fast since we just say send byte and hardware toggles pins it set frequency. Software SPI is same just do we change pins manually. So gets a bit slower. Problem is when a…
-
Yes that was the part I meant interpreting the point not as you expected:-) Great it now works.
-
Da du offenbar auch Cura nutzt muss ich Fragen ob du im end gcode relative Koordinaten nutzt und da auch noch homest. Das führt gerne zu dem Problem das du beschreibst weil cura offenbar davon ausgeht das homing auf absolute coordinaten wechselt, wi…
-
I think we release next server version in november. When I think of it I will push a note here when a beta is available where it is fixed.
-
Great. Then just one slow calculation was hung and blocking somehow.
-
Forgot - M commands are send like SEND(316) so any of the send commands could be the temperature setting command. But if you have no Tx because it was for single extruder print it won't include extruder selection. Might be a good idea to log starti…
-
Recover file contains data from the gcode printed. BED([115]) sets bed temperature. Does the gcode contain extruder selection and setting temperature or do you normally start with selected extruder and temperature?
-
Repetier-Server has a recover function. When activated it logs what got printed and you can continue from there. You can combine it with host also recover it self is only available from server gui.
-
Yes it is in configuration.h and might also be visible in eeprom settings as well. The values that need to be limited are jerk, acceleration, max feedrate. With increasing speed motors loose power so that problems get more likely. Jerk is a sudden d…
-
I get it stored in 3D/disableTravelVisualization in registry. If you don't have it it is a change I already made for next release.
-
You have a high power extruder as it seems. 244°C at 95 pwm. But you already see that it is not fully linear. Quadratic trend matches quite good here. And with lower powered extruders it will flatten a bit more on the right I guess. Good thing is we…
-
> Now the print head hits the edge of the bed. help..... what does that mean? When? Bad offsets or end stops configured wrong so they get ignored?
-
I forget one option. You can add gain/bias support to calibrate it. Requires latest dev version as I just fixed a bug there. Then you mod temperature like newTemp = bias + oldTemp*gain Default is bias 0 and gain 1. You need to have TEMP_GAIN 1 defi…
-
In my windows host version the changes get stored. It also switches to preview when loading gcode. So I either have already fixed it for next release or you are using an older release then 2.1.6 The check boxes for file association are not showing …
-
Someone will enter lower temperatures. Then it still has to work. Plus it makes math faster if we can say we have a value every x pwm change. Then I don't need to store position and value - only step width and values. But I think we need to make ste…
-
WHat I said is you are forgetting the bed measurement happening before yours take into place. That is the one failing due to having wrong position for zProbe 1-3 points. You must have P1: 0 , 0 P2: 280, 0 P3: 0, 280 and adjust your code to use thes…
-
Eeprom is only readable with proper host software and that requires usb connection. How do you upload a firmware when computer restarts on plugging in usb cable? Could this be an answer to a defect usb cable or wrong voltages on usb? Or drawing to…
-
Ok have found the problem and fixed it. When writing it used the address of the extruder offset instead of bed position. So in addition to not storing it, it overwrote an other value as well. Latest dev should have fixed it now.
-
Last image looks like temperature is jittering a lot. But maybe you are still on 60 minute interval and that are just the swings. But look sin deed much better. Dead time is hard with high power extruder. When activating it makes a big jump after a …
-
Maßgebend ist die Uhrzeit/Datum des Rechners auf dem der Server läuft. Bei Linux Systemen sieht man das Datum mittlerweile im Blitz Symbol Menu,
-
Just replace the version in download link and it should work.
-
For new features it has a plugin system. Sources are only accessible with a proper source license and more for manufactures.
-
G1 Z15.0 F120 ;Move Z Axis up G4G1 X1.1 Y20 Z0.24 ;Move to start position G4 Nächste Zeile bewegt Y sehr langsam weil hier F3000 fehlt was bei der anderen der Fall ist. G1 X1.1 Y120.0 Z0.24 E8 ;Draw the first line G1 X1.4 Y120.0 Z0.24 ;Move to…
-
For thermocouples it is in extruder.cpp line 2555 case 60: // AD8495 (Delivers 5mV/degC vs the AD595's 10mV)#if CPU_ARCH == ARCH_AVR currentTemperatureC = ((float)currentTemperature * 1000.0f / (1024
-
Merkwürdig. Werde meine MK3 demnächst mal updaten und sehen was passiert.
-
Tested it and changing it with M220 or in gui always changed both for me. Sure the touch screen is showing the correct printer here? Since you don't see the active printer it is easy to mismatch printers if you have more than one. Also if same and…
-
That would only work if both need the same slave select and sd card detect pin. But if you can list files when inserted and can't when not inserted it should be ok.
-
G1 Z15.0 ;Move Z Axis upG1 X1.1 Y20 Z0.24 ;Move to start positionG1 X1.1 Y120.0 Z0.24 E8 ;Draw the first lineG1 X1.4 Y120.0 Z0.24 ;Move to side a littleG1 X1.4 Y20 Z0.24 E8 ;Draw the second line ist schlechter Stil weil da die Geschwindigkeit …
-
Hard to say. Maybe you are right or pid is the easier solution. I guess I really have to write this to see how much correction is required with preset start pwm.
-
What do you mean that it shuts the computer down? Printers are not able to do so. They only have a serial connection. You can not access all firmware settings. But you can see many settings if you have eeprom usage enabled. Then M205 reports all se…