• Please visit and share your knowledge at our sister communities:
  • If you have not, please join our official Homebrewing Facebook Group!

    Homebrewing Facebook Group

The braumiser, my braumeister inspired rig

Homebrew Talk

Help Support Homebrew Talk:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
Hi Matho,

Thanks for sharing. That is an great work.
I am interested to make my own 50 liters BM an I search all over the web for an copy of the BM controller.
Finally I founded it on this wab page and this with all I will need.

Thanks again for an precious help.


Thanks,
Danilo
 
A friend was able to do the routing single-sided
so as to portelro do easily at home.

You tell me what is latest version of the firmware so I try Barduino
Will need to change the pinout to use this PCB
Just tried that everything works am going to publish the files side Copper

https://plus.google.com/photos/1170...5884273152122924834&oid=117096022619927896725

BarduinoItaly.jpg


In Italiano

Un Amico è riuscito a fare lo sbroglio a singola faccia cosi da portelro fare facilmente in casa.
Mi dite quale è ultima versione del Firmware Barduino cosi provo
Sara necessario modificare il PinOut Per usare questo PCB
Appena provato che tutto funziona pubblichero il files lato Rame
 
Hi,
Just wondering where you purchased the kettle valve as shown in photo? I purchased a Speidel Braumeister 20L late last year, the valve that comes with it is a ball type. I lost the function of after one use. My attempts to replace with a more durable kettle valve has been hampered due the fact that my system requires replacements with metric type threads. The ones I've found are for American type threads. Do you, or anyone else can help me with my situation?
Dsurratt
 
Well yesterday I had two minutes to try to affect what was on paper: D

from this

Bene ieri ho avuto due minuti per provare ad incidere quanto era su carta :D

Da questo



Now place across the stage as you can see in every test I had to do three good to have one but you will know the beginning is always so: D

Adesso posto tutta la fase come si vede in ogni test ne ho dovuto fare tre per averne uno Buono ma si sa al inizio è sempre cosi :D















 
You're locked into a minimum batch size with a set-up like this, yes? Unless you change the inner cylinder size (height)?
 
I have been wanting to build a small batch brewery

http://www.saviot.com/index.php?opt...ticle&id=15:braduino-italy&catid=8&Itemid=101

I hope you do not mind

In order not to lose track I put everything in a page on my site
when it relates to the change with single-sided PCB and Italian Menu

Matho Thanks for great program you've accomplished

I wanted to ask if you can use even bigger LCD
if I write in Italian does not enter into 16x2 LCD
and if you can add to programa support SD card reader writer
Log cooked to achieve the load and maybe recipes prepared
PC and written to the SD

Matho if you want then copy the images and files also on my website
to have a double copy if you're scared like me that sites
end host on the network can

Spero non dispiace

Per non perdere traccia ho messo tutto anche in una pagina sul mio sito
per quando riguarda la modifica con PCB Monofaccia e Menu Italiano

Grazie Matho per ottimo programma che hai realizzato

Volevo chiederti se è possibile usare anche LCD piu grande
se scrivo in Italiano non entra in LCD 16x2
e se puoi aggiungere al programa supporto lettore scrittore scheda SD
per realizzare Log della cotta e magari caricare ricette preparate
da PC e scritte sulla SD

Matho se vuoi poi copiare le immagini e files anche sul mio sito
per avere una doppia copia se hai paura come me che i siti
in rete possano scadere host
 
I love your work saviothecnic I have been watching your progress on AHB. All of the improvement you have mentioned are possible but I don't have much time anymore to spend on my hobbies. Last October my 5yo daughter suffered a hypoglycemic seizure which has resulted in her having cerebral palsy so I'm concerntrating on her recovery, I apoligise to anyone that I have not replied to lately.

cheers steve
 
Hi

I am also interested in a bigger display like 4x20.

An SD card reader to save the recipes???
PERFECT IDEA DAVIDE, ALL MY COMPLIMENTS!!!


Dear Matho we need you once more.

Many Tanks to all involved it this subject!!!


Dear Matho
I saw now your post

I am so sorry for that.
Best wishes for your daughter
 
I love your work saviothecnic I have been watching your progress on AHB.cheers steve

Matho Thanks for the compliments glad that appreciates our work

I am very sorry for what I read: (
My best wishes for your daughter
Think of the family comes first.

We go forward with the evidence if tomorrow you will have problems at all and you'll have time free mind and we are here to dedicate yourself you place a screenshot of the new modifcation where it is expected addition of reader & writer SD Display and use different type 40x2, 20x4, 16x2 addition to the native



In Italiano

Grazie Matho per i complimenti fa piacere che aprezzi il nostro lavoro
Mi dispiace molto per quello che leggo :(
I miei migliori auguri per tua figlia
Pensa alla famiglia che viene prima di tutto.

Noi andiamo avanti con le prove se una domani avrai risolto tutto e avrai tempo e mente libera per dedicarti noi siamo qui ti posto una schermata della nuova modifca dove è previsto aggiunta di Lettore Scrittore SD e usare Display diversi tipo 40x2 o 20x4 oltre al 16x2 nativo
 
Public the final version of the PCB redesigned in a single layer By DanielXan .

It requires a redefinition of the pin-ot to work.

Rename .rec .zip

PCB 14
// define pinout
// sensor and lcd
OneWire ds(8);
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);

// push buttons
const char Button_prev = A0;
const char Button_nxt = A1;
const char Button_up = A2;
const char Button_dn = A3;

// outputs
const int Pump = 9;
const int Buzz = 10;
const int Heat = 11;

PCB 15

// define pinout
// sensor and lcd
OneWire ds(12);
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);

// push buttons
const char Button_prev = A0;
const char Button_nxt = A1;
const char Button_up = A2;
const char Button_dn = A3;

// outputs
const int Pump = 9;
const int Buzz = 10;
const int Heat = 11;
// Pin Illuminazione LCD 8

View attachment 14.rec
 
Hi. I had a problem. The sensor of temperature measurement shows 2 degrees below. Who can help? It is necessary to correct a code? Where and what it is necessary to correct? All thanks.
 
Temp_c = (raw & 0xFFFC) * 0.0625 in this line do or + or - that you it is necessary. Beside me +1

Looks so
Temp_c = (raw & 0xFFFC) * 0.0625+1
 
Thanks.
"Temp_PID = (raw&0xFFFF) *0.0625;
Temp_c = (raw & 0xFFFC) * 0.0625;
Conv_start = false;
return; "

Temp_c = (raw & 0xFFFC) * 0.0625+2; - correctly?
And Temp_PID = (raw&0xFFFF) *0.0625; it is necessary to change? (Temp_PID = (raw&0xFFFF) *0.0625+2; ? )
 
I can't understand, it turns out the more темература heating, the thermal sensor more is mistaken. I heated water to 55 and shows 50 degrees ((((
 
Alexander86 Thanks.
"Temp_PID = (raw&0xFFFF) *0.0625;
Temp_c = (raw & 0xFFFC) * 0.0625;
Conv_start = false;
return; "

Temp_c = (raw & 0xFFFC) * 0.0625+2; - correctly?
And Temp_PID = (raw&0xFFFF) *0.0625; it is necessary to change? (Temp_PID = (raw&0xFFFF) *0.0625+2; ? ) ------------ Yes
 
And Temp_PID = (raw&0xFFFF) *0.0625; it is necessary to change? (Temp_PID = (raw&0xFFFF) *0.0625+2; ? I have no such line in code, but on logic and here it is necessary to add +2, чтоб and PID regulator had grieve adjustment! And question but where possible look your version of the program? We Beg pardon for mechanical translation!
 
Ты случайно не из России? )))
 
Из хохлянди я! Давай дружить!!!! Я добавил в описанной строке +1,25 и индикатор во всяком случае стал показывать то, что надо! А вот такой строки с пид регулятором у меня точно нет! Только, что смотрел!
 
Alexander86 моя аська 439-157-786 или другие варианты?!
 
Boys in the last post I see some strange characters and do not read what is sucess?

Ragazzi negli ultimi post vedo dei caratteri strani e non leggo cosa è sucesso ?
 
The temperature sensor is mistaken. In case of 20-30 degrees shows value 2 degrees lower, and in case of 70-90 is already 6 degrees lower. Who can help?
 
Alexander86 Блин хочу себе такой контроллер замумтить, как у матхо,но я заказал экран для ардуины уже с кнопками,его скейч подойдет мне или его надо переписывать?
И еще вопрос паять особо не умею не хочу собирать аутпут плату.
Можно ли как нибудь обойтись релюшками для ардуины
http://www.aliexpress.com/item/5V2-...M-DSP-AVR-ELECTRONIC-SCA-1720/1273530083.html
и не заморачиваться с пайкой?
 
purgen зайди ко мне в аську я тебе все распишу, у меня собрано на такой плате которая по ссылке, кроме изменения схемы надо будет переделать прогу под этот блок-реле. Нарисую схему и сброшу переделанный скетч. Моя аська 439-157-786
 
Как я устал переводить... Хоть братья славяне тут... Новичку поможете?
Собираю клон, есть схемы, код для ардуино, рабочие?
 
Привет. Х.з., я паять умею немного ))), а вот что бы без этого всего обойтись х.з. Если надумаешь все таки паять , могу продать печтаную плату, мне их прислали 5 штук (минимальный заказ был). Я Сам из московской области если ты то же от туда можем с кооперироваться )))
 
Skifcod2 - ага все работает )))
 
Back
Top