It looks like the PanelDue shows Heaters instead of Tools. I have 4 tools configured, using the default heaters everything is shown correctly but now I have assigned H7 to the 3rd tool (because the cable was too short) and it's all messed up now:
Best posts made by CHP
-
RE: Bug when not using E0 & E1
Latest posts made by CHP
-
RE: Bug when not using E0 & E1
It looks like the PanelDue shows Heaters instead of Tools. I have 4 tools configured, using the default heaters everything is shown correctly but now I have assigned H7 to the 3rd tool (because the cable was too short) and it's all messed up now:
-
TMC2660 - stallGuard endstops
This is not a wish, just my experiments using the stallGuard feature of the TMC2660s. Since ist was mentioned several times I wanted to try it out myself.
tl;dr It works but probably too finicky to tune correctly.
One has to get three dependent values right: stallGuard threshold, motor current and movement speed.
On the first picture I have a normal X move on my BigBox (cartesian), stallGuard threshold is at 3 and current at 500mA. The orange move is undisturbed as one can see the initial acceleration is nearly tripping the stallGuard (getting down to 0) followed by some ringing. In the blue graph I stopped the carriage with my hand, you can see the line going down slowly because of the springiness of my hand, after that the motor is stalling heavily even moving backwards at times but the stallGuard didn't trip.On the second picture I tried it with the Z axis (100 full steps per mm), set the current to 200mA because the lead screws give too much torque. I changed the tripped zero values to -100 to make them visible in the graph. In the last part the nozzle hits the bed and trips the stallGuard but the stepper never stalled.
So premature my conclusion is, making this work reliably is hard, you can't use any signal filtering because then you are several steps "behind".
If someone wants to experiment with this further you can use my stallGuard branch https://github.com/ChristophPech/RepRapFirmware/tree/stallGuard Currently one can use the stallGuard as virtual endstops, also record the values for further analysis. If someone needs a precompiled binary I can build one, I'd even add a possibility to set the stallGuard threshold values. -
RE: Mesh Bed Compensation Screwy
I never tried ABS but for PLA and PETG I am using 90°C bed temperature otherwise it doesn't stick well without printing the first layer slower and squish it down.
I dislike squishing the first layer because it gives the print elephant feet also without serious slowdown stuff gets ripped off.
But at 90-100°C (surface temp on the bigbox is ~10° lower than the thermistor reports) the filament sticks well to the bed even at higher speeds and also if the nozzle is way to far from the bed. I could move the nozzle several mm above the bed, the first layer would still stick.
-
RE: Mesh Bed Compensation Screwy
So the 90 degree is not in Y but in Z then…?
It's an axle which can rotate in X but also offsets the sensor 50mm to the right. It moves it nearer to the hotend since I have no hotend installed in the left slot of my carriage.Is there a way of getting the firmware to display the height map that is in use?
For that I made this simualtion branch so I can test it on a PC. But you need Visual Studio 2015 (free express version) to run it:
https://github.com/ChristophPech/RepRapFirmware/tree/simI ran two of your examples through it at 2mm resolution. The easiest way to visualize is opening it in Excel and insert the 3D-Surface chart of the whole table with default settings.
https://drive.google.com/file/d/0B-DBgmDdShYnQWlFS2V3SDJpS0U/view?usp=sharing
https://drive.google.com/file/d/0B-DBgmDdShYnUnp0X1NFdVFWN1U/view?usp=sharing
(filename dates are references to the comment's times) -
RE: Mesh Bed Compensation Screwy
@GrodanB
If your right tool is at zero then the sensor is relative to that:
G31 T1 P500 X-63.2 Y7.0 Z2.53From your picture it looks like the IR LED is bend (but I'm not sure, it could be just the odd angle of the photo)
By "adjusting the angle of the IR sensor board" I meant through the 2 screws at the top which are connected to the carriage. If you look at the plastic under the screws there might be some depressions from the screws in which case you can't change the angle anymore so the part needs to be reprinted.
-
RE: Mesh Bed Compensation Screwy
@GrodanB
(I have the Clever3D bed too, but not the black one, the metallic one)
I made this horrible IR-sensor mount: https://drive.google.com/file/d/0B-DBgmDdShYnSkRBVXBBMklWanc/view?usp=sharing
It's good for testing the influence of the angle but only a temporary measure before I switch to IDEX. You can easily misalign it by touching it the wrong way, also it only fits the pro-hybrid carriage with volcano.Additionally my bed.g script turns off the lights before measuring and turns them back on after, but I'm almost sure that doesn't matter.
-
RE: Mesh Bed Compensation Screwy
Why can't I set the probe placement relative to each tool separately?
Because it has nothing to do with the tool offsets. Think of the IR-sensor as if it it's own tool.Also your measured bed-matrix looks very inconsistent. I had the same problem on my BigBox in the past, the reason was that the angle of the IR-sensor was not parallel to the bed. I couldn't even change the angle because the screws of the sensor mount have made some groves.
The "correct" bed-matrix on the BigBox should look mostly flat with a slight bulge upwards in the center (this is due to the sag of the smooth rods)
-
RE: Mesh Bed Compensation Screwy
And we can even do better by using bicubic interpolation:
Since Z is often the slowest axis, smoothing it out will mean smoother movement for the other axes.But there still remain two last issues: unprobed points with a 0 csv are being clamped to zero, this can easily be fixed
Second: points outside the probing area remain constant. These should be extrapolated, maybe something like linear regression.
Thoughts?
-
RE: Mesh Bed Compensation Screwy
But there is still more. Zeroing out the last two columns gives me this:
The interpolation overflows into the first column of the next line. Fixing it:
The final result of the whole mesh: looks quite good.