National Homebrew Club Ireland

General Discussions => Chit Chat => Topic started by: christhebrewer on May 13, 2012, 09:05:31 PM

Title: can't belive it's not braumiester
Post by: christhebrewer on May 13, 2012, 09:05:31 PM
The Braumiester is insanely expensive! I know we can produce something as good (poss better) for half the price or less.
I hope we don't upset the establishment again.
Title: Re: can't belive it's not braumiester
Post by: Padraic on May 13, 2012, 09:58:45 PM
70l insulated pot.............€100
50l stockpot for grain tube...€34
delivery from the Germans.....€28
solarprojects pump............€35(delivered)
Burco 2.5kw element...........€30 approx
a few fittings etc............€30
custom temp control/time setup..€100 approx
labour to put it together.......?


€357 + labour

This would be a great project, one pot rims brewery. It'd be very interested as a semi-commercial project like the electric brewing company guy (http://www.theelectricbrewery.com/) His site is a great example of open source hardware with an unobtrusive commercial element to it.. IMHO
Title: Re: can't belive it's not braumiester
Post by: christhebrewer on May 14, 2012, 08:48:18 AM
Once the numbers get a bit clearer I will see about offering a fixed price for the complete item. Maybe if a few guys are interested we can do a deal.
The insulated version I have in mind will be better than the braumiester at least in that it will come up to termperature quicker and use a lot less power in any one cycle. The option to pump out rather than just flow out from a tap will be very usefull. In my own system the primary fermenter is up quite high and pumping up to it makes it very easy. It's all gravity feed from there, to secondaty etc.
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 14, 2012, 10:56:30 AM
I havent had a chance to look at those links in detail yet, but I would strongly advise using the arduino over the PIC.
The arduino is actually just a (cheap) dev board for what is actually an Atmel AVR chip.
These are more open source friendly in terms of compilers and generally have less of a barrier to using them.
there's a geaks forum www.avrfreaks.com
You can get source code there etc for various applications/uses.

Im assuming whatever you've linked to above has source code, but the advantage of using the avr (arduino) over the PIC is that we could easily customise the software if needed.

PS: HBW will be rightly pissed off at you Will - you've gone from trying to generate sales to taking them away - and boy they were mighty big sales :P
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 14, 2012, 11:14:46 AM
What link are you talking about for the schematics - is it the one eddieken posted over in that other place we talk.
Title: Re: can't belive it's not braumiester
Post by: christhebrewer on May 14, 2012, 01:44:42 PM
Thinking more about hardware design, what are the pros and cons of having the control system(brain) in a seperate box rather than trying to make space for it in or under the tank itself.  We have to allow space for a pump so a small plinth, maybe 40 or 50mm will be needed. How big would the brain be?
Do we have a USB connection to control it from a laptop?
It's also quite a good option to use an stc1000 and control the mash manualy, that would be a bit of a cop out though.
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 14, 2012, 02:56:40 PM
Yeah I just loaded them.
Once I know how it all works and exactly what your man's thing controls i will be able to comment better.
The circuitry doesnt look too bad though for the arduino version.
Its just a few transistory type switches, an LCD and a temp probe.
from looking at the code he posted, the temp probes are those 1 wire ds chips you used in your fermentation chamber.
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 14, 2012, 03:44:38 PM
Just had a quick read through the PDF there and saw the arduino code in the post..
The schematic shouldnt change too much for the arduino version - the fact he has made the boards mudular means that the only board that would be different is the main board with the microcontroller on it.

The microcontroller stuff looks like it should be easy enough.

The only thing im not clear on is the heating controls, SSRs and triacs and optocouplers make my mind go a little bit mad. Ill have to do some googling later though :)
Title: Re: can't belive it's not braumiester
Post by: christhebrewer on May 14, 2012, 04:38:13 PM
Can the arduino not switch an SSR directly?
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 14, 2012, 05:50:36 PM
Yeah it can drive it alright.
Bloody expensive little yolks though! SSRs that is.
I'd say thats why your man went with the little circuit with the optocoupler instead.
Title: Re: can't belive it's not braumiester
Post by: christhebrewer on May 14, 2012, 06:09:26 PM
I have some 25A SSRs I got on ebay from Hong Kong. 99c each!
They delivered them seperately so they cost me a fiver each in the end. Still good value.
The solar projects pump only pulls 1.5A at 12v. A cheap mechanical relay should do fine. Or a simple power transistor switch.
The heater will need an SSR though.
Title: Re: can't belive it's not braumiester
Post by: christhebrewer on May 14, 2012, 06:10:30 PM
This guy has taken it a bit far!
http://hobbybrauer.de/modules.php?name=eBoard&file=viewthread&tid=4639
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 15, 2012, 10:51:35 AM
When you say "the arduino version" - do you mean the arduino version of your man with the braumeister clone's controller?

Just had a quick read there, it seems the bonjuino board is compatible with the arduino software - which basically means you can use the fancy arduino IDE, and the arduino proprietary language.

That bonjuino also uses the AVR (atmegaxxx is a series of AVR chips) chips I was talking about.
But reading up on the Arduino stuff, they seem to have their own programming language, and special bootloaders come on the AVR chip.
Ive used the same chips, but simply just compiled c code and loaded the binary onto the chip. And built my own hardware around them.
With the likes of these arduinos and bonjuinos, you end up needing a better chip to do what you want, because there is a certain amount of arduino stuff on the chip already which is needed to support there proprietary language etc.

Anyway, I digress.
The point im trying to make is you end up with something which is more expensive than it should be - but of course its a lot simpler to use - e.g. with arduino you get the low level stuff to control those 1wire temperature probes for free. with like 2 func calls you can get the temp. Theyre only meant for hobbyists.
The way i did it (programming straight to the chip with c code), i wrote all the low level stuff myself and its often difficult to debug. Same for the LCD.

Since we're probably only going to build one or 2 of these, the difference in cost is minimal.

Getting back to the bonjuino and the braumeister, I reckon He was able to replace the "main board" in that PDF with the bonjuino board and just interface from that to the other boards/circuitry.
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 15, 2012, 01:52:39 PM
Yeah and of course if your man has the source code available, you save a chunk of time there too.
Title: Re: can't belive it's not braumiester
Post by: wallacebiy on May 16, 2012, 01:24:19 PM
Lads
Not sure if this is of any benefit , but I've been looking at the Raspberry Pi ( I'm in the queue for one ) and a crowd called Adafruit are doing a prototyping board
https://www.adafruit.com/products/801


I was thinking that , with a small display you could have a pc based controller that also ran brewing software for recipes / calculations etc . adding a wireless ethernet adapter and you can control from the main computer in the house ....




Dunno know , maybe it's a bit mad and overkill , but ..still
Title: Re: can't belive it's not braumiester
Post by: christhebrewer on May 16, 2012, 04:10:00 PM
I kind of like the idea of running it from a pc. No idea why!
Would it make it more expandable.... ?
The current parts guesstimate is around €500. That's for the full on version with 2 pumps, including €100 for the controller.
A bag version would be a bit less.
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 16, 2012, 06:05:48 PM
This (controlling from a PC) can also be achieved with the arduino - network connection and bluetooth is cheap and easy - not sure about wifi, ive never looked into it.

I reckon it would be cheaper than raspberry pi + raspberry pi dev board.
Although with raspberry PI you get a proper distribution - its basically a small PC running linux - you could attach a screen and mouse/keybaord to it whatever you want.

Other downside is you would have to reproduce the controoler software. Its already been done for arduino.

Id say raspberry Pi would be a 'nice to have'.
Title: Re: can't belive it's not braumiester
Post by: JimmyM on May 16, 2012, 06:11:12 PM
PS: Anyone interested in a pint tomorrow (thursday 17th May, 7.30pm) Holland's in Bray, we could discuss this further :)
Title: Re: can't belive it's not braumiester
Post by: wallacebiy on May 17, 2012, 02:43:37 PM
QuoteThis (controlling from a PC) can also be achieved with the arduino - network connection and bluetooth is cheap and easy - not sure about wifi, ive never looked into it.

I reckon it would be cheaper than raspberry pi + raspberry pi dev board.
Although with raspberry PI you get a proper distribution - its basically a small PC running linux - you could attach a screen and mouse/keybaord to it whatever you want.

Other downside is you would have to reproduce the controoler software. Its already been done for arduino.

Id say raspberry Pi would be a 'nice to have'.

I think somebody is doing a Pi + arduino project too though ....

I'm currently trying to get a virtual machine running the Pi version of debian , to see what I can do with it , but it's driving me mad
Title: Re: can't belive it's not braumiester
Post by: JimmyM on June 05, 2012, 04:26:54 PM
How much was it?
What you going to use it for?
Only rated to 10A so you will probably just about get away with using it for a kettle element.
But as you say its not SSR so switching it on and off quickly isnt an option.
Think ill start playing with my arduino tomorrow :)
Title: Re: can't belive it's not braumiester
Post by: JimmyM on June 06, 2012, 10:13:12 AM
ahhhh ya see, i didnt think of that :)
Title: Re: can't belive it's not braumiester
Post by: HomeBrewWest on August 21, 2012, 01:52:11 AM
This is a great project. Those solar pumps . . . . what material exactly? Hot sweet liquids are quite corrosive. On one of the links above, a proper SS pump costs $335 approx. I'd use a PIC and triacs / optos (zero current switching, SCRs probably aren't legal for power switching anymore because of the noise they generate). I'd control the PIC and hardware with a PC (Java, Eclipse for me). Could even run a web server and let people browse pages showing realtime temps, pump operation, etc. Hmmm, the pump is the only worry for me . . . I'd also use silicon rubber tubing everwhere.
Title: Re: can't belive it's not braumiester
Post by: HomeBrewWest on August 21, 2012, 01:55:02 AM
By the way, I'd only use a PIC because I have a proper ICE 2000 emulator, and C compiler.
Title: Re: can't belive it's not braumiester
Post by: HomeBrewWest on August 21, 2012, 03:50:10 PM
QuotePumps are these:
http://solarproject.co.uk/page2.html

I will be in Galway on Thursday and can bring my pump me to show you? I plan on dropping into the shop while I'm there.
Probably going to Donegal, but not until after I write code to integrate stock control on our 3 web sites with Amazon UK. So not defo yet.
Title: Re: can't belive it's not braumiester
Post by: Stitch on September 11, 2012, 08:43:43 AM
Is this post dead or is the project ongoing?? I spoke with Chris a while back about the automation aspect of his brewery but at the time I was moving jobs and was very busy. Have a bit more time on my hands and would not mind getting involved.
Title: Re: can't belive it's not braumiester
Post by: Stitch on September 11, 2012, 09:20:33 AM
Just down in Lucan.
Title: Re: can't belive it's not braumiester
Post by: Will_D on October 03, 2012, 08:26:28 PM
As far as my build is concerned just waiting for the nice weather to end ( !!! ). Its a winter sort of job

Will