diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2018-11-02 12:42:30 +0100 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2018-11-02 12:42:30 +0100 |
commit | 2853288682a990ece24a41f60af75d24fc17b079 (patch) | |
tree | 15e0438910e973d7f710b18a77c46cf481e95aab | |
parent | ce656ccd9e793f96bc7b6bc826aca0ef644ee761 (diff) | |
download | Stickman-Costume-2853288682a990ece24a41f60af75d24fc17b079.tar.gz Stickman-Costume-2853288682a990ece24a41f60af75d24fc17b079.zip |
:wrench: Tweak default settings
-rw-r--r-- | Stickman-Costume.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Stickman-Costume.ino b/Stickman-Costume.ino index 4edf99b..9f255bd 100644 --- a/Stickman-Costume.ino +++ b/Stickman-Costume.ino @@ -10,13 +10,13 @@ #define IN_MODE 4 // Pressing this increments 'mode' by one #define IN_ADJ 3 // This button adjusts the brightness -int CMode = 2; // This is just the current mode +int CMode = 0; // This is just the current mode int ExistingModes = 4; // This is the number of modes that are implemented // Used for saving button state bool IN_ADJ_STATE = false; // bool IN_MODE_STATE = false; // // These are for the general pwm-frequency (not all modes care) -int CBrightness = 255; // The brightness of the strip, between '0' and '255' +int CBrightness = 50; // The brightness of the strip, between '0' and '255' int CDimDirection = 0; // Used to know if the brightness should be increasing or decreasing based on the button press // These are used by the strobe-effect int CStrobeRevs = 0; // A running counter for the strobe-light |