main/automation.h

Wed, 19 May 2021 14:35:48 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 19 May 2021 14:35:48 +0200
changeset 94
87aa80b8e452
parent 1
ad2c8b13eb88
permissions
-rw-r--r--

Changed HTTP tasks startup code to prevent a race condition during startup. Upgraded the WiFi code to support the new esp_netif api. Removed the AP mode, WiFi is now STA (station) only.

/**
 * @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