Crank/Buzz settings #66
Replies: 6 comments 6 replies
-
|
Smart, easier to talk about it here. Behind the scenes here I haven't stopped fiddling with the circuit. I feel like I'm missing something electronic-y here. Right now I've got a rectifier made of possibly-fake 1n34a diodes supposedly meant for use in crystal radios. With just the rectifier and the resistor over the crank terminals for physical resistance, a multimeter shows the rectifier is very sensitive. If I put a 100Ohm resistor inline (to keep the current low) it's still as sensitive. But if I hook it up to the teensy, it wigs out and give me values of like 900 (2-ish volts) constantly. If I add in a voltage divider, I get crappy less-sensitive response that we've been grappling with. The voltage is not too high without the divider, but I can't seem to figure out how to wire the damn thing up without one. It seems like it "needs" to have resistance there for some reason that's eluding me. Something behaves differently under load, maybe? Short of lots of trial and error I'm not sure where I'm going wrong here. To that end, though, I'm going to dismantle things enough to run it all through a breadboard and test in-situ. I think the bottom line with the reversible crank is that with the ones we've come up with so far, the crank just doesn't register the low-voltage slow cranking that we need it to. I fear wrestling with the variables isn't going to achieve it. A smooth cranking motion will be detrimental couping, and good coups requires your normal cranking to be a little too fast. It's a pickle, a sort of signal-to-noise ratio problem. The sample/spin/buzz settings... 800000 is very long. That determines how "long" all the other settings are as it makes each cycle longer. There's a diminishing return to setting it higher beyond a point:
I wonder if a rolling-average (this cycles crank voltage is the average of the new reading and previous ones) would do a better job of smoothing, but I suspect it wouldn't be enough to hide the funky crank sensitivity. I'm still holding on to hope of coming up with a physical design that works as well as they do w/o the rectifier. The solution, for me at least, needs to be something that works with minimal adjustment compared to the cranks most digigurdy owners have. |
Beta Was this translation helpful? Give feedback.
-
|
I think I might be on to something... 7ohms resistance between the crank terminals, in34a diodes, 100ohms coming off the positive side, and 6.8k ohms making up the other half of the voltage divider. On the breadboard it felt better. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks trying 130 now , will adjust some settings…one other thing on a real gurdy the buzz cannot work in reverse. |
Beta Was this translation helpful? Give feedback.
-
|
Oh, they're better. 1n5817 is where it's at! |
Beta Was this translation helpful? Give feedback.
-
|
ok briefly tried 130 and 131 using my 4007 bridge, I haven't messed around with the settings much, but for now I'm going back to 129 as it works nicely,,,,,when I get the other in60p diodes I will try again, and also test more without the bridge. |
Beta Was this translation helpful? Give feedback.
-
|
I really don’t think the 1n400[1-7] family is going to work here. https://www.vishay.com/docs/88503/1n4001.pdf Compare the forward voltage graph (0.6v for the 1n4001/7) with the link in my other comment for the 1n5817 (0.1v). The unusable jitter in the 1n4007 bridge you’ve got now (and I think an 1n4001 as well) isn’t something that can be overcome. Most basic silicon diodes are going to be in the 0.6-0.7 range. I noticed big improvement when I switched to the 1n5817 from 1n34as… those were 0.2v (Germanium diodes are 0.2-0.3) to give you an idea. If that last tenth of a volt was noticeable, I don’t think you’re going to be able to work with missing another half volt, you know? The 1n5817 should be pretty easily-available. I know it’s all over Amazon, mouser, digikey. Several brands make it. It’s an in-production, common-ish diode… I even see them in most of the basic “diode assortment kits”. There’s probably other Schottky diodes (these are the ones that seem to come in the ultra-low voltages, even lower than Germanium diodes) that would do that job, but back to my very first suspicion when John gave us this idea, the forward voltage is the most important thing to the end product. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Rather than confuse the face book page I though tI'd bring the settings I've been playing around with over here.
Using a 4.1 teensy
SPIN_SAMPLES = 800000;
( I did try 40000, 60000, 100000, 120000, this value with a rectifier seems to give lowest not jitter cranking)
const int BUZZ_SMOOTHING = 25; //tried 15....No control
const int BUZZ_DECAY = 10; //was 1...5 seems to work well with 25 above
( with decay at one coup control was impossible, at 5 it was getting there, but 10 seems to cut off and be Reilly controllable, dropping the buzz smoothing doesn't appear to help with coup much, I will test more with different ratios. I tend to currently think a quite close ratio between the two works best.....work in progress...not that my playing is that good anyway.
Beta Was this translation helpful? Give feedback.
All reactions