From 879970a2bf617dde90522aede35b1c9170cb398a Mon Sep 17 00:00:00 2001 From: Daniil Kalamin <56044849+dakalamin@users.noreply.github.com> Date: Fri, 25 Oct 2024 19:18:13 +0300 Subject: [PATCH] Fix AUTOCOUNT_CELLS default value --- src/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.h b/src/config.h index cddfd6d..6888866 100644 --- a/src/config.h +++ b/src/config.h @@ -38,8 +38,8 @@ typedef uint8_t braille_t; #define AUTOCOUNT_BIT (1 << 7) // if braille cells must be automatically counted -#define AUTOCOUNT_CELLS false -// number of braille cells if ther are not automatically counted +#define AUTOCOUNT_CELLS true +// number of braille cells if they are not automatically counted #define BRAILLE_CELLS 4 #define ANIMATION_ON_START true