Return from Autoload filament and Load filament menu item to parent menu.

Exception is Load filament, when temperature is sufficient to load filament, in such case, load filament is started and GUI returns to status screen.
This commit is contained in:
Marek Bel 2018-04-25 16:51:35 +02:00
parent 5bb9451b5d
commit f207145752
2 changed files with 67 additions and 24 deletions
Firmware

View file

@ -6,6 +6,12 @@
#include "Timer.h"
#include "Arduino.h"
/**
* @brief construct Timer
*
* It is guaranteed, that construction is equivalent with zeroing all members.
* This property can be exploited in MenuData union.
*/
Timer::Timer() : m_isRunning(false), m_started()
{
}