From 8a77cdaaff0a55019a83b3bcc1b3341baed264b4 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Thu, 31 May 2018 09:33:41 +0200 Subject: [PATCH] astyle Signed-off-by: Gergely Nagy --- src/Kaleidoscope-LEDEffect-Rainbow.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/Kaleidoscope-LEDEffect-Rainbow.h b/src/Kaleidoscope-LEDEffect-Rainbow.h index 2db2bcd2..f9930909 100644 --- a/src/Kaleidoscope-LEDEffect-Rainbow.h +++ b/src/Kaleidoscope-LEDEffect-Rainbow.h @@ -9,9 +9,13 @@ class LEDRainbowEffect : public LEDMode { LEDRainbowEffect(void) {} void brightness(byte); - byte brightness(void) { return rainbow_value; } + byte brightness(void) { + return rainbow_value; + } void update_delay(byte); - byte update_delay(void) { return rainbow_update_delay; } + byte update_delay(void) { + return rainbow_update_delay; + } void update(void) final; private: @@ -31,9 +35,13 @@ class LEDRainbowWaveEffect : public LEDMode { LEDRainbowWaveEffect(void) {} void brightness(byte); - byte brightness(void) { return rainbow_value; } + byte brightness(void) { + return rainbow_value; + } void update_delay(byte); - byte update_delay(void) { return rainbow_update_delay; } + byte update_delay(void) { + return rainbow_update_delay; + } void update(void) final; private: