* GenericVibration: code style refactor

This commit is contained in:
Scott Powell 2025-09-18 13:19:54 +10:00
parent b3e9fd76ce
commit 384b02bec4
5 changed files with 73 additions and 79 deletions

View file

@ -12,7 +12,7 @@
#include <helpers/ui/buzzer.h>
#endif
#ifdef PIN_VIBRATION
#include <helpers/ui/vibration.h>
#include <helpers/ui/GenericVibration.h>
#endif
#include "../AbstractUITask.h"
@ -25,7 +25,7 @@ class UITask : public AbstractUITask {
genericBuzzer buzzer;
#endif
#ifdef PIN_VIBRATION
genericVibration vibration;
GenericVibration vibration;
#endif
unsigned long _next_refresh, _auto_off;
NodePrefs* _node_prefs;