Browse Source

Make the beep tone less offensive

pull/1/head
Erik van der Zalm 11 years ago
parent
commit
1e05d192ab
  1. 6
      Marlin/ultralcd_implementation_hitachi_HD44780.h

6
Marlin/ultralcd_implementation_hitachi_HD44780.h

@ -13,7 +13,7 @@ extern volatile uint16_t buttons; //an extended version of the last checked but
#endif
////////////////////////////////////
// Setup button and encode mappings for each panel (into 'buttons' variable)
// Setup button and encode mappings for each panel (into 'buttons' variable
//
// This is just to map common functions (across different panels) onto the same
// macro name. The mapping is independent of whether the button is directly connected or
@ -715,9 +715,9 @@ static void lcd_implementation_quick_feedback()
for(int8_t i=0;i<10;i++)
{
WRITE(BEEPER,HIGH);
delay(3);
delayMicroseconds(100);
WRITE(BEEPER,LOW);
delay(3);
delayMicroseconds(100);
}
#endif
}

Loading…
Cancel
Save