Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No way to skip step or end brew manually and Heat@Pump for mash only #118

Open
jimhiggs opened this issue Feb 25, 2023 · 5 comments
Open

Comments

@jimhiggs
Copy link

jimhiggs commented Feb 25, 2023

I found BrewManiac when looking for non pi alternatives for Craftbeerpi or Brewpi. I bought a Grainfather S40 and want better heat control. Looked at others but BrewManiac seems to be what I was looking for.
A couple of things that I miss.

  1. There seems to be no way to skip a step when in Auto.
  2. The only way I can see to stop a brew session or restart is to pull the plug is that right?
  3. For both it would be nice if these buttons existed when in Pause.
  4. Heat@Pump is a really useful feature. In my 3 vessel system running CraftbeerPi I use a probe in the recirc tube to control mash temp and when turning off the pump have managed to overheat the mash. But I don't run the pump during boil so I would like to implement Heat@Pump only during mash modes in Auto and maybe not at all in manual.
    I will start looking at the code to see if I can adapt it myself.
@vitotai
Copy link
Owner

vitotai commented Mar 2, 2023

  1. LONG PRESS the "STP" button. Then you can skip current step.
  2. Press "UP" and "DOWN" simultaneously will bring you to the "main" screen at any time.
  3. I don't understand what you mean.
  4. After implemented Heat@Pump, I switched to another setup that doesn't need this feature. Therefore, I haven't tested it in a real brew. I think you can modify the code around line [email protected]
    from
    if(readSetting(PS_HeatOnPump)){ ...
    to
    if(!_isPIDMode && readSetting(PS_HeatOnPump)){ ...

_isPIDMode would be false during boiling stage while it is true during mashing stages.

@frank-nobrega
Copy link

In the settings section of BrewManiac you can scroll down to Pump on Boil and turn it off.

@jimhiggs
Copy link
Author

jimhiggs commented Mar 2, 2023

@frank-nobrega Yes I know but once running in manual or auto you cant edit settings can you
@vitotai Thanks for the answer to 1 & 2. Dont know how I missed this.
3. While in pause only one button is defined (exit) I was thinking 1 could be used for skip step and 1 for Quit to main menu. But your answer to 1 & 2 provides the function.
4. I will give this a try.

@jimhiggs
Copy link
Author

jimhiggs commented Mar 3, 2023

@vitotai in 4 above I think you meant if(_isPIDMode && readSetting(PS_HeatOnPump)){ ...
(not !_isPIDMode)
Works great.

@vitotai
Copy link
Owner

vitotai commented Mar 3, 2023

@jimhiggs
My bad. You are 100% right. I might have had too much beer last night.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants