Liquid Flow Meter (FT330) kegbot.org #4605
Replies: 1 comment
-
Posted at 2015-02-10 by DrAzzy Reading the FT330 should be no problem. Posted at 2015-02-10 by laxmaster Awesome thanks for the quick reply. There's also this liquid flow meter which is less expensive, but more accurate. http://www.adafruit.com/product/828 It sounds like the same thing. The description seems like it will help with the math. Posted at 2015-02-10 by DrAzzy How is it more accurate? The FT330 datasheet spec's +/-2%, while Adafruit says +/-10%. Either should work for interfacing with the Espruino - the interface is nearly identical, though as I alluded to above, if the input frequency gets too high, the Espruino won't be able to keep up. Posted at 2015-02-11 by @gfwilliams By 'too high' though we mean over 1kHz (or 3ish with some carefully written code). Id be really surprised if something like that got anywhere close though - it'd have to be spinning near 180,000 rpm! Posted at 2015-03-10 by user53670 I hope you will get accurate flow meters here also https://www.nriparts.com/instrumentation/flow-meters/ . Posted at 2015-03-10 by @allObjects Looking at the datasheet, you are just fine... The frequency is in the range of 30..350 Hz The datasheet also provides you with what you need for your math for non-linearity. As @drazzy mentions, the code in the callback handling a pulse should be as short as possible. Since with every event you also get the time stamp of the event, you can just grab the information and stick it into a buffer (array), and on a differently paced event schedule - on an interval - you trigger the calculation. If your processing takes longer, Espruino is queuing the interrupts and you get them when done... Side question: do you a) drive the flow?... and - b) Is the flow always within the limits of the meter's specs? Attachments: Posted at 2015-04-23 by KrumblySG Are you attempting to use an Espruino as a Flow analyzer or Flow calculator? Posted at 2015-04-23 by KrumblySG As promised, I found an old similar datasheet for the type of pickup coils. Attachments: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2015-02-10 by laxmaster
I'd like to try a project like this kegbot.org but with the espruino. I'm a maker newbie, but I do know javascript and development methods. Do you think something like this is feasible? I searched but didn't see any work done on liquid flow meters in this forum.
Any other thoughts?
Beta Was this translation helpful? Give feedback.
All reactions