-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
LCD BTN not work well. VIKI 2. #4127
Comments
If i change: #define BEEPER_PIN 61 to //#define BEEPER_PIN 61 all works!!! problem with the BEEPER? |
Maybe, what is your setting for |
is: //#define SPEAKER |
@fbarcenas What kind of LCD? Does enabling @jbrazio Sounds like a crappy debouncer. Previously the delay in the @fbarcenas Try this… void lcd_quick_feedback() {
lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
next_button_update_ms = millis() + 500;
#if ENABLED(LCD_USE_I2C_BUZZER)
lcd.buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
#elif PIN_EXISTS(BEEPER)
buzzer.tone(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
- #else
- delay(LCD_FEEDBACK_FREQUENCY_DURATION_MS);
#endif
+ delay(LCD_FEEDBACK_FREQUENCY_DURATION_MS);
} |
i use VIKI 2 Yes i can play musical tones. |
Uncomment |
@fbarcenas can we close this ticket, is your problem solved ? |
i think this one can be closed... it should not take 10 days to respond |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Some weeks i don't update with the last rcbugfix. Today i do and what is my surprise than the button of the LCD when i press the beeper always sound BUT not go inside the menus... some times work, another times not... is really desperate.
Some idea?
The text was updated successfully, but these errors were encountered: