get direct step running from encoder
[clinton/Smoothieware.git] / src / modules / utils / panel / screens / cnc / ControlScreen.cpp
CommitLineData
446deda2 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.
446deda2 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#include "libs/Kernel.h"
9#include "libs/SerialMessage.h"
10#include "Panel.h"
11#include "PanelScreen.h"
12#include "MainMenuScreen.h"
13#include "ControlScreen.h"
14#include "libs/nuts_bolts.h"
15#include "libs/utils.h"
16#include <string>
564cf1f0 17#include "Robot.h"
61134a65
JM
18#include "PublicData.h"
19#include "checksumm.h"
383c9c1c 20#include "LcdBase.h"
61134a65
JM
21
22#include <math.h>
383c9c1c 23#include <stdio.h>
61134a65 24
35089dc7
JM
25using namespace std;
26
2fa50ca0
JM
27#define NULL_CONTROL_MODE 0
28#define AXIS_CONTROL_MODE 1
2fa50ca0 29
862fc625
JM
30ControlScreen::ControlScreen()
31{
35089dc7
JM
32 this->control_mode = NULL_CONTROL_MODE;
33}
34
862fc625
JM
35void ControlScreen::on_enter()
36{
cee1bb2d
JM
37 THEPANEL->enter_menu_mode();
38 THEPANEL->setup_menu(4);
f9a0f86d 39 get_current_pos(this->pos); // gets current WCS
58d6d841 40 this->refresh_menu();
862fc625 41 this->pos_changed = false;
35089dc7
JM
42}
43
44// called in on_idle()
862fc625
JM
45void ControlScreen::on_refresh()
46{
cee1bb2d 47 if ( THEPANEL->menu_change() ) {
35089dc7 48 this->refresh_menu();
58d6d841
JM
49 }
50
862fc625 51 if (this->control_mode == AXIS_CONTROL_MODE) {
446deda2 52
cee1bb2d 53 if ( THEPANEL->click() ) {
58d6d841
JM
54 this->enter_menu_control();
55 this->refresh_menu();
446deda2 56
cee1bb2d
JM
57 } else if (THEPANEL->control_value_change()) {
58 this->pos[this->controlled_axis - 'X'] = THEPANEL->get_control_value();
59 THEPANEL->lcd->setCursor(0, 2);
58d6d841 60 this->display_axis_line(this->controlled_axis);
862fc625 61 this->pos_changed = true; // make the gcode in main_loop
58d6d841 62 }
446deda2 63
862fc625 64 } else {
cee1bb2d
JM
65 if ( THEPANEL->click() ) {
66 this->clicked_menu_entry(THEPANEL->get_menu_current_line());
58d6d841
JM
67 }
68 }
35089dc7
JM
69}
70
71// queuing gcodes needs to be done from main loop
862fc625
JM
72void ControlScreen::on_main_loop()
73{
58d6d841 74 // change actual axis value
862fc625
JM
75 if (!this->pos_changed) return;
76 this->pos_changed = false;
446deda2 77
862fc625 78 set_current_pos(this->controlled_axis, this->pos[this->controlled_axis - 'X']);
35089dc7
JM
79}
80
862fc625
JM
81void ControlScreen::display_menu_line(uint16_t line)
82{
58d6d841 83 // in menu mode
862fc625 84 switch ( line ) {
cee1bb2d 85 case 0: THEPANEL->lcd->printf("Back"); break;
446deda2
JM
86 case 1: this->display_axis_line('X'); break;
87 case 2: this->display_axis_line('Y'); break;
88 case 3: this->display_axis_line('Z'); break;
35089dc7
JM
89 }
90}
91
862fc625
JM
92void ControlScreen::display_axis_line(char axis)
93{
cee1bb2d 94 THEPANEL->lcd->printf("Move %c %8.3f", axis, this->pos[axis - 'X']);
35089dc7
JM
95}
96
97
862fc625
JM
98void ControlScreen::clicked_menu_entry(uint16_t line)
99{
100 switch ( line ) {
cee1bb2d 101 case 0: THEPANEL->enter_screen(this->parent ); break;
35089dc7
JM
102 case 1: this->enter_axis_control('X'); break;
103 case 2: this->enter_axis_control('Y'); break;
104 case 3: this->enter_axis_control('Z'); break;
105 }
106}
107
862fc625
JM
108void ControlScreen::enter_axis_control(char axis)
109{
35089dc7
JM
110 this->control_mode = AXIS_CONTROL_MODE;
111 this->controlled_axis = axis;
cee1bb2d
JM
112 THEPANEL->enter_control_mode(this->jog_increment, this->jog_increment / 10);
113 THEPANEL->set_control_value(this->pos[axis - 'X']);
114 THEPANEL->lcd->clear();
f9a0f86d
JM
115 THEPANEL->lcd->setCursor(0, 0);
116 THEPANEL->lcd->printf("Jog %6.2f", jog_increment);
117
cee1bb2d 118 THEPANEL->lcd->setCursor(0, 2);
446deda2 119 this->display_axis_line(this->controlled_axis);
35089dc7
JM
120}
121
862fc625
JM
122void ControlScreen::enter_menu_control()
123{
58d6d841 124 this->control_mode = NULL_CONTROL_MODE;
cee1bb2d 125 THEPANEL->enter_menu_mode();
35089dc7
JM
126}
127
1ad23cd3 128void ControlScreen::set_current_pos(char axis, float p)
862fc625 129{
58d6d841
JM
130 // change pos by issuing a G0 Xnnn
131 char buf[32];
cee1bb2d 132 int n = snprintf(buf, sizeof(buf), "G0 %c%f F%d", axis, p, (int)round(THEPANEL->get_jogging_speed(axis)));
58d6d841
JM
133 string g(buf, n);
134 send_gcode(g);
35089dc7 135}