Browse Source

Using SET_INPUT instead of pinMode

pull/1/head
Ruwan J Egoda Gamage 9 years ago
committed by Richard Wackerbarth
parent
commit
1270fbfd38
  1. 8
      Marlin/ultralcd.cpp

8
Marlin/ultralcd.cpp

@ -1548,10 +1548,10 @@ void lcd_init() {
#endif
#ifdef RIGIDBOT_PANEL
pinMode(BTN_UP,INPUT);
pinMode(BTN_DWN,INPUT);
pinMode(BTN_LFT,INPUT);
pinMode(BTN_RT,INPUT);
SET_INPUT(BTN_UP);
SET_INPUT(BTN_DWN);
SET_INPUT(BTN_LFT);
SET_INPUT(BTN_RT);
#endif
#else // Not NEWPANEL

Loading…
Cancel
Save