allow _ for panel custom menu comamnds that need spaces (like G0 X100 Y100 would...
[clinton/Smoothieware.git] / src / modules / utils / panel / screens / PrepareScreen.h
CommitLineData
82d1ceb3 1/*
35089dc7
JM
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
82d1ceb3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
35089dc7
JM
6*/
7
8#ifndef PREPARESCREEN_H
9#define PREPARESCREEN_H
10
11#include "libs/Kernel.h"
12#include "libs/nuts_bolts.h"
13#include "libs/utils.h"
14#include "libs/Pin.h"
15#include "LcdBase.h"
16#include "Panel.h"
17#include "PanelScreen.h"
18
862fc625
JM
19class PrepareScreen : public PanelScreen
20{
21public:
22 PrepareScreen();
35089dc7 23
862fc625
JM
24 void on_refresh();
25 void on_enter();
26 void on_main_loop();
27 void display_menu_line(uint16_t line);
28 void clicked_menu_entry(uint16_t line);
5ff3e912 29 int idle_timeout_secs() { return 30; }
35089dc7 30
862fc625
JM
31private:
32 PanelScreen *extruder_screen;
33 PanelScreen *temp_screen;
34 void preheat();
35 void cooldown();
82d1ceb3 36
862fc625 37 string command;
35089dc7
JM
38};
39
40#endif