Skip to content

Commit

Permalink
Update blackjack_conuter.c
Browse files Browse the repository at this point in the history
  • Loading branch information
grugnoymeme authored Dec 7, 2023
1 parent 90247fa commit febbe09
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions blackjack_conuter.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@
int count = 0; // Corretto il nome della variabile

static void vibration_hot_count() {
notification_message = "Hot Count Threshold!";
char notification_message[50]; // Assumendo che la lunghezza massima della stringa sia 50
strcpy(notification_message, "Hot Count Threshold!");
furi_hal_vibro_on(false);
furi_hal_vibro_on(true);
furi_delay_ms(1500);
furi_hal_vibro_on(false);
notification_message = "";
strcpy(notification_message, "");
return;
}


static void app_draw_callback(Canvas* canvas, void* ctx) {
UNUSED(ctx);

Expand Down

0 comments on commit febbe09

Please sign in to comment.