Git Product home page Git Product logo

Comments (5)

rampanelli avatar rampanelli commented on August 25, 2024

Alguma previsão para inserção dos avisos, hoje na versão 1.0.06 permanece uma linha em branco sem nenhum aviso ou mensagem quando da subida para o boil quando ainda não tiver atingido o ponto de ebulição.

from brewuno.

paulopro avatar paulopro commented on August 25, 2024

se fizer um comparador de temperaturas (T>MashOut & T<Boil) = Aviso????

from brewuno.

rampanelli avatar rampanelli commented on August 25, 2024

BoilService.cpp
Line 90-94

if (activeStatus->ActiveBoilStepName != "Boiling heating" && activeStatus->BoilTemperature < activeStatus->BoilTargetTemperature)
{
    activeStatus->ActiveBoilStepName = "Boiling heating";
    Serial.println("Boiling heating");
}

ou

EVITA AVISOS POR QUEDA DE ATÉ 2C NA TEMPERATURA APOS ATINGIR O ALVO

if (activeStatus->ActiveBoilStepName != "Boiling heating" && activeStatus->BoilTemperature < activeStatus->BoilTargetTemperature-(2))
{
    activeStatus->ActiveBoilStepName = "Boiling heating";
    Serial.println("Boiling heating");
}

ou

AVISA UMA ÚNICA VEZ MESMO QUE DEPOIS DE ATINGIR O ALVO A TEMPERATURA TORNE A CAIR

if (activeStatus->ActiveBoilStepName == "" && activeStatus->BoilTemperature < activeStatus->BoilTargetTemperature-(0.1))
{
    activeStatus->ActiveBoilStepName = "Boiling heating";
    Serial.println("Boiling heating");
}

from brewuno.

rampanelli avatar rampanelli commented on August 25, 2024

b1a
b1d
b2d
b2a

from brewuno.

uncodead avatar uncodead commented on August 25, 2024

Implementado na versão 09

from brewuno.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.