1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-19 00:05:43 +00:00

base_light_effects lint

This commit is contained in:
Tomasz Duda
2024-08-09 17:23:17 +02:00
parent b43c5b851a
commit 17c5844d13

View File

@@ -53,8 +53,8 @@ class PulseLightEffect : public LightEffect {
uint32_t transition_on_length_{};
uint32_t transition_off_length_{};
uint32_t update_interval_{};
float min_brightness{0.0};
float max_brightness{1.0};
float min_brightness{0.0}; // NOLINT(readability-identifier-naming)
float max_brightness{1.0}; // NOLINT(readability-identifier-naming)
};
/// Random effect. Sets random colors every 10 seconds and slowly transitions between them.