diff --git a/vibrator/Vibrator.cpp b/vibrator/Vibrator.cpp index 215d339..7c06f23 100644 --- a/vibrator/Vibrator.cpp +++ b/vibrator/Vibrator.cpp @@ -232,7 +232,7 @@ ndk::ScopedAStatus Vibrator::activate(uint32_t timeoutMs) { /* We mostly get values that are 20ms and lower, but that's not enough to be actually noticeable. Set it to - 40ms if timeoutMs is less than that. */ + 30ms if timeoutMs is less than that. */ if (timeoutMs < INTENSITY_MIN) { timeoutMs = INTENSITY_MIN; } diff --git a/vibrator/Vibrator.h b/vibrator/Vibrator.h index e9332f2..a9e4ef5 100644 --- a/vibrator/Vibrator.h +++ b/vibrator/Vibrator.h @@ -8,7 +8,7 @@ #include -#define INTENSITY_MIN 40 +#define INTENSITY_MIN 30 #define INTENSITY_MAX 10000 #define INTENSITY_DEFAULT INTENSITY_MAX