It's been a while but I thought I would update this for the sake of others that may stumble upon this.
I got the mosfets in to try and fix my first board and ended up getting my F0 port to work but only that one so I ordered a new Genuine Duet2 Wifi and got it in tonight and plugged everything back in and now all of my fans work as intended.
Thank you to @bearer and @Phaedrux for all of your help with everything. I learned a very good lesson this week: Don't buy crap quality knock-off products.
Best posts made by jallen810
-
RE: PWM FAN0, 1, & 2 always on?
-
RE: Another Slice Engineering 450°C thermistor heater fault issue
@elmoret @deckingman so I have a Sidewinder X1 that uses ribbon cables for power & signal. As a test I ran proper heater cartridge wiring to my Duet and once I did that, all these problems went away and I’m running my 450 thermistor with no issues now.
In summary, y’all were right. Thanks for advice. -
RE: Made Duet&PS External to enclosure. Wiring question
@engikeneer I sat down last night and the SSR and PS are fine. I was able to power it up, I learned the SSR light only turns on when the bed heat is called for. There is no always on indicator. TIL right lol
Less great news I think I burned out the mosfet for PWM fan 0 and I blew the 1A fan fuse. These explain why all my fans died “simultaneously” I guess. Got replacements on the way.
Moral of the story, fan Electronics’s are sensitive, don’t swap anything, EVER, while the power is on.
Good news, RRF3 that I plan on upgrading to in the near future allows me to remap use any pins for fans so I should be fine.TL:DR- I’m a dumb monkey and I shouldn’t be in charge of anything more complicated than shoelaces.
Thanks for advice and sounding board -
RE: InputShaping-Plugin-0.1.0-rc7 released (repacked)
@fred-y @mfs12 I have to say, after using Klipper's system to "Autotune" this is bit archaic by comparison. I sure hope this will be continued to be improved upon as i think it has merit. WIthout having a huge understanding of the algorithms involved here let me take a stab at how i think your system could be improved to help the user make educated decisions on I.S. for their system.
1.) The Analysis graphing always defaults to displaying all 3 (X,Y,Z) axes simulataneously. This is overwhelming, the configuration dialog asks us to pick 1 axes to test, thus the accelerometer readings should only be recorded for this axis (or filtered after the fact) so as to not confuse the user.
2.) I have notice that my acclerometer testing file names are not being generate with the user selected (I.S. algo type, Frequency, Damping, axis desire, etc..) they simply get some random numbers & a date/time stamp... (Pic below)
Supposed to name:
Actual Name i get when CSV is saved:
So i have to go one-by-one, test, record, rename, update settings, repeat... very slow & frustrating simply to get my filenames correct so i can compare them....
3.) The analysis doesn't make any kind of recommendations for solving any of our variables.... The user must optimize 3-variables... not likely going to happen in any sort of quick situation. My recommendation would be for the system to take a standing still reading to account for environmental resonances (fans/etc...) and ignore these values when analyzing the accelerometer data. From there it should test increasing frequencies (Defined by user OR 0-150Hz F.E.) and then run that through solving for each I.S. type one-by-one to determine optimal frequency to cancel and maximum accel/decel & dampening at solved frequency...
This would, in effect, do exactly what Klipper I.S. does so well (and in mere minutes) but would give us a graphical representation of it simultaneously....I truly hope you keep at it and make some improvements to the system, I don't want this to sound like negative because this is great work so far, it just simply isn't complete yet, if you mission is to provide the user with "turnkey" information to improve their prints. I will keep playing with this and upgrading as beta's come out.
-
RE: Error: This kinematics does not support auto-calibration
@phaedrux said in Error: This kinematics does not support auto-calibration:
Basically. The feature was deprecated in favour of something better. To approximate the old style you can just define a sparse grid with 4 or 9 points, ie a 2x2 or 3x3
Okay fair enough. I was able to make this work with a G29 4-corners probe.
M557 like this:
M557 X3:353 Y5:354 P2:2Lastly I edited my bed.g to run a G29 S0 & S1 instead of the series of G1/G30 commands i had before, then I put the same G29 S0 & S1in my Start Gcode.
Thanks for your help.