added support for the reprapworld keypad

This commit is contained in:
gregor
2013-05-10 21:57:17 +02:00
parent 2c0fa34c9e
commit 6fb9573157
4 changed files with 99 additions and 3 deletions

View File

@@ -113,6 +113,7 @@ static void menu_action_setting_edit_callback_long5(const char* pstr, unsigned l
/** Used variables to keep track of the menu */
volatile uint8_t buttons;//Contains the bits of the currently pressed buttons.
volatile uint8_t buttons_keypad; // to store the keypad shiftregister values
uint8_t currentMenuViewOffset; /* scroll offset in the current menu */
uint32_t blocking_enc;
@@ -687,6 +688,25 @@ menu_edit_type(float, float51, ftostr51, 10)
menu_edit_type(float, float52, ftostr52, 100)
menu_edit_type(unsigned long, long5, ftostr5, 0.01)
#ifdef KEYPAD
static void keypad_move_y_down() {
SERIAL_ECHO("keypad_move_y_down");
encoderPosition = 1;
move_menu_scale = KEYPAD_MOVE_STEP;
lcd_move_y();
}
static void keypad_move_y_up() {
encoderPosition = -1;
move_menu_scale = KEYPAD_MOVE_STEP;
lcd_move_y();
}
static void keypad_move_home() {
//enquecommand_P((PSTR("G28"))); // move all axis home
// TODO gregor: move all axis home, i have currently only one axis on my prusa i3
enquecommand_P((PSTR("G28 Y")));
}
#endif
/** End of menus **/
static void lcd_quick_feedback()
@@ -750,6 +770,13 @@ void lcd_init()
WRITE(BTN_EN1,HIGH);
WRITE(BTN_EN2,HIGH);
WRITE(BTN_ENC,HIGH);
#ifdef KEYPAD
pinMode(SHIFT_CLK,OUTPUT);
pinMode(SHIFT_LD,OUTPUT);
pinMode(SHIFT_OUT,INPUT);
WRITE(SHIFT_OUT,HIGH);
WRITE(SHIFT_LD,HIGH);
#endif
#else
pinMode(SHIFT_CLK,OUTPUT);
pinMode(SHIFT_LD,OUTPUT);
@@ -796,6 +823,17 @@ void lcd_update()
if (lcd_next_update_millis < millis())
{
#ifdef ULTIPANEL
#ifdef KEYPAD
if (KEYPAD_MOVE_Y_DOWN) {
keypad_move_y_down();
}
if (KEYPAD_MOVE_Y_UP) {
keypad_move_y_up();
}
if (KEYPAD_MOVE_HOME) {
keypad_move_home();
}
#endif
if (encoderDiff)
{
lcdDrawUpdate = 1;
@@ -876,6 +914,18 @@ void lcd_buttons_update()
if((blocking_enc<millis()) && (READ(BTN_ENC)==0))
newbutton |= EN_C;
buttons = newbutton;
// for the keypad
uint8_t newbutton_keypad=0;
WRITE(SHIFT_LD,LOW);
WRITE(SHIFT_LD,HIGH);
for(int8_t i=0;i<8;i++) {
newbutton_keypad = newbutton_keypad>>1;
if(READ(SHIFT_OUT))
newbutton_keypad|=(1<<7);
WRITE(SHIFT_CLK,HIGH);
WRITE(SHIFT_CLK,LOW);
}
buttons_keypad=~newbutton_keypad; //invert it, because a pressed switch produces a logical 0
#else //read it from the shift register
uint8_t newbutton=0;
WRITE(SHIFT_LD,LOW);