Correcting reference for step 3 for creating custom effects from line 101 (incorrect) to line 110 (correct).

This commit is contained in:
andyhollin 2020-10-20 10:07:13 -07:00
parent 3f943eaf20
commit baf403349f
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ Here is a step-by-step guide on how to make your effect:
2. Add your own routine in FX.cpp starting with: `uint16_t WS2812FX::mode_custom`
3. Add to total number of effects in FX.h line 101: `#define MODE_COUNT`
3. Add to total number of effects in FX.h line 110: `#define MODE_COUNT`
4. Add your mode number (ie` #define FX_MODE_CUSTOM 110`) in FX.h around line 200.