main/automation.h

Tue, 22 Jun 2021 22:21:09 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 22 Jun 2021 22:21:09 +0200
changeset 103
1885d0c75c48
parent 1
ad2c8b13eb88
permissions
-rw-r--r--

Default equipment max_watt set to 2750. Added defaults for new equipment record. Switched PWM timer to high-speed. Implemented the safety timer to prevent the MLT + HLT will draw too much power in shared mode. Removed some code ideas that were not used. The fake heater now uses the faked PWM power.

/**
 * @file automation.h
 * @brief Brew automation.
 */
#ifndef	_AUTOMATION_H
#define	_AUTOMATION_H


/**
 * @brief Automation init fases
 * @return true if should jump to startover.
 */
bool Automation_Init(void);

/**
 * @brief Automation loop screens. Non-blocking (mostly).
 * @return true if should jump to startover.
 */
bool Automation_Loop(void);


#endif

mercurial