Skip to content

Commit

Permalink
Fix LED pin changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Aircoookie committed Feb 25, 2020
1 parent f304a68 commit 755448f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A fast and feature-rich implementation of an ESP8266/ESP32 webserver to control

### Features:
- WS2812FX library integrated for over 100 special effects
- FastLED noise effects and palettes
- FastLED noise effects and 50 palettes
- Modern UI with color, effect and segment controls
- Segments to set different effects and colors to parts of the LEDs
- Settings page - configuration over network
Expand Down
4 changes: 2 additions & 2 deletions wled00/NpbWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

//PIN CONFIGURATION
#ifndef LEDPIN
#define LEDPIN 5 //strip pin. Any for ESP32, gpio2 or 3 is recommended for ESP8266 (gpio2/3 are labeled D4/RX on NodeMCU and Wemos)
#define LEDPIN 2 //strip pin. Any for ESP32, gpio2 or 3 is recommended for ESP8266 (gpio2/3 are labeled D4/RX on NodeMCU and Wemos)
#endif
//#define USE_APA102 // Uncomment for using APA102 LEDs.
//#define USE_WS2801 // Uncomment for using WS2801 LEDs (make sure you have NeoPixelBus v2.5.6 or newer)
Expand All @@ -30,7 +30,7 @@
#endif

#ifndef RLYMDE
#define RLYMDE 1 //mode for relay, 0: LOW if LEDs are on 1: HIGH if LEDs are on
#define RLYMDE 1 //mode for relay, 0: LOW if LEDs are on 1: HIGH if LEDs are on
#endif

//END CONFIGURATION
Expand Down
4 changes: 2 additions & 2 deletions wled00/wled00.ino
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
#endif

//version code in format yymmddb (b = daily build)
#define VERSION 2002251
#define VERSION 2002252

char versionString[] = "0.9.1";

Expand Down Expand Up @@ -430,7 +430,7 @@ IPAddress ntpServerIP;
uint16_t ntpLocalPort = 2390;
#define NTP_PACKET_SIZE 48

//maximum number of LEDs - MAX_LEDS is comming from the JSON response getting too big, MAX_LEDS_DMA will become a timing issue
//maximum number of LEDs - MAX_LEDS is coming from the JSON response getting too big, MAX_LEDS_DMA will become a timing issue
#define MAX_LEDS 1500
#define MAX_LEDS_DMA 500

Expand Down

0 comments on commit 755448f

Please sign in to comment.