It's a hydrometer - use it like any other. Maybe I don't understand your question?
WHAT????? It's a hydrometer? Damn it, I ordered the GD wrong thing. Thanks for the help buddy.
It's a hydrometer - use it like any other. Maybe I don't understand your question?
WHAT????? It's a hydrometer? Damn it, I ordered the GD wrong thing. Thanks for the help buddy.
Sorry, what did you think you ordered? Maybe we can help you out.
It's not a hydrometer exactly. It's a unit that you drop in your fermenter and it constantly measures both specific gravity and temperature, reporting those over bluetooth to a nearby device like a phone or tablet.
I thought it was a toaster! My wife is going to be pissed.
I thought it was a toaster! My wife is going to be pissed.
In all seriousness. I know it is a hydrometer and I know what they do. What I meant was how to you go about using this to calculate efficiency. I've looked at the calculators, they have adjustments for the temp your hydrometer is calibrated for, is that something you have to worry about with this device? When your mash is done, do you just scoop out a pitcher of wort, let it cool down a bit and drop the device in to get a reading? At that point do you have to compensate for the temp?
Oh, and no, you shouldn't have to worry about making temperature adjustments with these units, but keep in mind that the sensor is measuring the temp of the air inside the Brewometer, not measuring the temp of the wort directly. That means it will take a bit to adjust to matching the temp of your beer/wort. Not a big deal if you're using it just to measure gravity, but if you're using it to take a temp reading, give it a few minutes to adjust.
In all seriousness. I know it is a hydrometer and I know what they do. What I meant was how to you go about using this to calculate efficiency. I've looked at the calculators, they have adjustments for the temp your hydrometer is calibrated for, is that something you have to worry about with this device? When your mash is done, do you just scoop out a pitcher of wort, let it cool down a bit and drop the device in to get a reading? At that point do you have to compensate for the temp?
No, this is not practical for this application. It's not an 'instant read' hydrometer. You should use a refractometer for this purpose. Or use a glass hydrometer and thermometer and do the temp calibration calculations.
Properly calibrated, it's good enough for my purposes, but I still use a refractometer to take readings pre- and post- boil. After the wort is chilled and in the fermenter I verify that the Brewometer is reading within a point or two of the final refractometer reading and then I let it do its thing. Once I see that it has settled down to my expected FG for a couple of days I consider fermentation to be finished and transfer into kegs without a final refractometer reading.So what you are saying, is this is not good for determining your OG and FG?
So what you are saying, is this is not good for determining your OG and FG?
It depends on how accurate your measurements need to be. According to their FAQ it's accurate to +/- .002 SG points which should be more than enough for most people. The only use I can see where that may not have enough accuracy is when selling beer as the ABV can only be +/- .3% off from label which .002 SG points comes awfully close to.
So what you are saying, is this is not good for determining your OG and FG?
<?php
//Reduce errors
error_reporting(~E_WARNING);
$brewometer = "XX:XX:XX:XX:XX:XX"; // put your brewometer MAC address here
$command1 = "gatttool -b ".$brewometer." --char-read -a 0x3b"; // get SG
$command2 = "gatttool -b ".$brewometer." --char-read -a 0x37"; // get temp
$command3 = "gatttool -b ".$brewometer." --char-read -a 0x48"; // get battery
while(1)
{
$result = exec ( $command1 );
$resultArray = explode(":", $result);
$result = hexdec(trim($resultArray[1]));
$result = (float)(($result-19) / 1000) + (float)1.000;
$sgStr = sprintf("SG - %01.3f", $result);
$result = exec ( $command2 );
$resultArray = explode(":", $result);
$tempStr = hexdec(trim($resultArray[1]));
$result = exec ( $command3 );
$resultArray = explode(":", $result);
$batStr = hexdec(trim($resultArray[1]));
echo $sgStr."\n"."Temp - ".$tempStr." degrees\n".$batStr."% remaining\n\n";
sleep(1);
}
?>
anyone use rechargeable batteries in these? wondering if the higher voltage will burn up the brewometer
Is that SG plot going backwards?
Looks good! I love how everything is hackable these days.
That's fantastic. I don't feel very good about leaving an iPad in my garage 24/7.I got it working with my RPi3 and some coding.
From their blog:
Battery (CR123A 3-volt, non-rechargeable battery). LiFePO4 rechargeable will work but are lighter and require multipoint calibration, other rechargeable will not (voltage too high).
I got the exact ones the units ship with to avoid any problems. They're $1.50/each if you buy them in 12 packs from Amazon. That's basically 50 cents per month of usage.
https://www.amazon.com/gp/product/B000IXCO8K/?tag=skimlinks_replacement-20