Skip to content

Commit

Permalink
Исправлена обработка кнопки при сработавшем будильнике
Browse files Browse the repository at this point in the history
  • Loading branch information
vvip-68 committed Apr 15, 2019
1 parent 6117c76 commit 6a62c0f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion firmware/GyverMatrixOS_v1.12/bluetooth.ino
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,11 @@ void bluetoothRoutine() {
hold_start_time = 0;
}

// Любое нажатие кнопки останавливает будильник
if ((isAlarming || isPlayAlarmSound) && (isButtonHold || clicks > 0)) stopAlarm();

// Обработка нажатий кнопки
if (isButtonHold) {
else if (isButtonHold) {

// Если работает будильник - любое количество нажатий или удержание прерывает будильник и включает часы на черном фоне
if ((isAlarming || isPlayAlarmSound)) stopAlarm();
Expand Down

0 comments on commit 6a62c0f

Please sign in to comment.