Why Tilt? What a horrible name. Brewometer was perfect.
I suppose "Bob" was already taken.
Why Tilt? What a horrible name. Brewometer was perfect.
So I've been loving my Brewometer (I'll keep with that name for now) and got it integrated into my personal homebrew site: http://rainesworld.beer, I'm brewing with a Grainfather and a chest freezer run by a BrewPi.
I created a site to mimic my personal site so other people with Brewometers could share what the were Brewing. I'm looking for feedback, you know how it goesI threw it together over a couple weekends, currently you can upload a BeerXML file and and create a link for the Brewometer app to post the data to.
http://brewstat.us
-Raine
So I've been loving my Brewometer (I'll keep with that name for now) and got it integrated into my personal homebrew site: http://rainesworld.beer, I'm brewing with a Grainfather and a chest freezer run by a BrewPi.
I created a site to mimic my personal site so other people with Brewometers could share what the were Brewing. I'm looking for feedback, you know how it goesI threw it together over a couple weekends, currently you can upload a BeerXML file and and create a link for the Brewometer app to post the data to.
http://brewstat.us
-Raine
Whoa! This is nice, I like this a lot. Did you write this interface your self?
Yes, I'm using a UI framework called Semantic-UI though, kinda like Bootstrap
Any chance we could see the code?
semantic-ui.com
What I meant to ask was are you going to open source your app?
Ah, gotcha, not at this time. I'm planning on adding BrewPi support, and list of other things, exporting data, embedding, etc.
There's a share feature as well
http://brewstat.us/share/1/crocktoberfest-marzen-2016
-Raine
If you end up using and see a feature that's missing, I'd love feedback![]()
I've used mine for maybe five batches thus far. Overall, I think it's a great tool and I have been very happy with it. I have noticed that the range seems to have gotten much shorter lately. I replaced the battery but no change. I also notice that it used to update every few seconds (within the app). Now, it updates once (maybe twice) and then it won't update again until I close and re-open the app.
Anyone else experience this?
are you using android or iOS? on android I had to exit the app, turn bluetooth off, back on and reload the app regain a connection. everytime. I now have a stupid iPad mini that "just works" :smack:
Android by chance?
I've used mine for maybe five batches thus far. Overall, I think it's a great tool and I have been very happy with it. I have noticed that the range seems to have gotten much shorter lately. I replaced the battery but no change. I also notice that it used to update every few seconds (within the app). Now, it updates once (maybe twice) and then it won't update again until I close and re-open the app.
Anyone else experience this?
I bought a cheap Android tablet (Astro Tab A737) that claims Bluetooth 4.0 compaibility, but it behaves a lot like what you describe. It's pretty much unusable. However, when I use my LG G2 phone (also Android) I have no problems. But, I can't tie up my phone just for this app.
Brew on![]()
Looks just like what is in mine, although not all the component markings are the same.Is this the same device that's in it?
![]()
If so, or even if not, these are arduino-compatible, have battery power, BLE, temp and an accelerometer. A smart person could use these as an open-source approach. They run ~$30 right now.
I thought it might have been, but as you say there's more than a couple pages here.Yeah, it's a LightBlue Bean. I think that got brought up somewhere in the previous 62 pages.
A smart person could use these as an open-source approach. They run ~$30 right now.
All that's needed now (physically) is the capsule. Some time spent on Alibaba might bear some fruit.I don't claim to be that person, but I just picked up a LBB just for giggles.![]()
I think if you're trying to roll you own here you would need the weight mechanism, the adapter for the larger battery, and their algorithm for how they're mapping degrees of tilt to a gravity reading.
The code is already available, however it would have to be modified depending on the case, carrier, battery, weight used, etc.I think if you're trying to roll you own here you would need the weight mechanism, the adapter for the larger battery, and their algorithm for how they're mapping degrees of tilt to a gravity reading.
It's not about saving money, it's about understanding the device and potentially allowing a greater breadth of platforms with which it can be used. It's just like the BrewPi ... ultimately it's easier and some would say cheaper in the long run to buy one; but people still like to tinker.Makes no sense at the cost they sell it for, unless you are doing volume.
I think the real value here is gaining an understanding of the workings of it in an effort to improve upon the platform.The adapter for the battery and weight could be 3D-printed, the weights could be as simple as small shot. The algorithm would require some experimentation with known SG liquids, and a lot of extrapolation.
It's all doable, the question is it cheaper to get the known-working device, or try to roll your own. Depends on how much you value your spare time.
Ultimately you are trying to copy someone's product which they, hopefully, have some patents protecting this. I assume you are just speculating and not actually thinking about doing it. It seems to me they have been pretty cool to this community and you are starting to head down a slippery slope.
double getAvgPitch(int count) {
AccelerationReading accel = {0, 0, 0};
double x = 0;
double y = 0;
double z = 0;
for (int i = 0; i < count; i++) {
accel = Bean.getAcceleration();
x += accel.xAxis;
y += accel.yAxis;
z += accel.zAxis;
}
double pitch = atan(y / sqrt(x * x + z * z)) * 57.3;
return pitch;
}
double convertPitch(double avgPitch) {
double sG = cal[0] * avgPitch * avgPitch * avgPitch + cal[1] * avgPitch * avgPitch + cal[2] * avgPitch + cal[3] + sgOffset - 20;
return sG;
}