Skip to content
Snippets Groups Projects
Commit 1e05d192 authored by Erik van der Zalm's avatar Erik van der Zalm
Browse files

Make the beep tone less offensive

parent e36d31a3
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ extern volatile uint16_t buttons; //an extended version of the last checked but ...@@ -13,7 +13,7 @@ extern volatile uint16_t buttons; //an extended version of the last checked but
#endif #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 // 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 // macro name. The mapping is independent of whether the button is directly connected or
...@@ -715,9 +715,9 @@ static void lcd_implementation_quick_feedback() ...@@ -715,9 +715,9 @@ static void lcd_implementation_quick_feedback()
for(int8_t i=0;i<10;i++) for(int8_t i=0;i<10;i++)
{ {
WRITE(BEEPER,HIGH); WRITE(BEEPER,HIGH);
delay(3); delayMicroseconds(100);
WRITE(BEEPER,LOW); WRITE(BEEPER,LOW);
delay(3); delayMicroseconds(100);
} }
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment