Merge remote-tracking branch 'upstream/edge' into upstream-master
[clinton/Smoothieware.git] / src / modules / utils / panel / screens / ExtruderScreen.h
CommitLineData
82d1ceb3 1/*
27102c66
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/>.
27102c66
JM
6*/
7
8#ifndef EXTRUDERSCREEN_H
9#define EXTRUDERSCREEN_H
10
27102c66
JM
11#include "PanelScreen.h"
12
27102c66
JM
13class ExtruderScreen : public PanelScreen {
14 public:
15 ExtruderScreen();
16 void on_refresh();
17 void on_enter();
27102c66
JM
18 void display_menu_line(uint16_t line);
19 void clicked_menu_entry(uint16_t line);
77753cfe 20 int idle_timeout_secs() { return 60; }
27102c66
JM
21
22 private:
383c9c1c 23 void setupConfigSettings();
27102c66
JM
24};
25
26#endif