Added shields.io to readme
This commit is contained in:
parent
9ca7ffa5a3
commit
942b68c948
18
readme.md
18
readme.md
@ -1,11 +1,16 @@
|
|||||||
![WLED logo](https://raw.githubusercontent.com/Aircoookie/WLED/master/wled_logo.png)
|
![WLED logo](https://raw.githubusercontent.com/Aircoookie/WLED/master/wled_logo.png)
|
||||||
|
|
||||||
## Welcome to my project WLED! (v0.8.3-dev)
|
[![](https://img.shields.io/github/release/Aircoookie/WLED.svg?style=flat-square)]()
|
||||||
|
[![](https://img.shields.io/discord/473448917040758787.svg?colorB=blue&label=discord&style=flat-square)](https://discord.gg/KuqP7NE)
|
||||||
|
[![](https://img.shields.io/badge/quick_start-wiki-blue.svg?style=flat-square)](https://github.com/Aircoookie/WLED/wiki)
|
||||||
|
[![](https://img.shields.io/badge/app-wled-blue.svg?style=flat-square)](https://github.com/Aircoookie/WLED-App)
|
||||||
|
|
||||||
|
## Welcome to my project WLED!
|
||||||
|
|
||||||
A fast and feature-rich implementation of an ESP8266/ESP32 webserver to control NeoPixel (WS2812B) LEDs!
|
A fast and feature-rich implementation of an ESP8266/ESP32 webserver to control NeoPixel (WS2812B) LEDs!
|
||||||
|
|
||||||
### Features:
|
### Features:
|
||||||
- WS2812FX library integrated for 75 special effects
|
- WS2812FX library integrated for 80 special effects
|
||||||
- FastLED noise effects and palettes
|
- FastLED noise effects and palettes
|
||||||
- Customizable Mobile and desktop UI with color and effect controls
|
- Customizable Mobile and desktop UI with color and effect controls
|
||||||
- Settings page - configuration over network
|
- Settings page - configuration over network
|
||||||
@ -19,6 +24,7 @@ A fast and feature-rich implementation of an ESP8266/ESP32 webserver to control
|
|||||||
- Configurable Auto Brightness limit for safer operation
|
- Configurable Auto Brightness limit for safer operation
|
||||||
|
|
||||||
### Supported light control interfaces:
|
### Supported light control interfaces:
|
||||||
|
- WLED Android app
|
||||||
- HTTP request API
|
- HTTP request API
|
||||||
- Blynk IoT
|
- Blynk IoT
|
||||||
- MQTT
|
- MQTT
|
||||||
@ -45,10 +51,4 @@ Uses Linearicons by Perxis!
|
|||||||
|
|
||||||
Join the Discord [server](https://discord.gg/KuqP7NE) to discuss everything about WLED!
|
Join the Discord [server](https://discord.gg/KuqP7NE) to discuss everything about WLED!
|
||||||
You can also send me mails to [dev.aircoookie@gmail.com](mailto:dev.aircoookie@gmail.com).
|
You can also send me mails to [dev.aircoookie@gmail.com](mailto:dev.aircoookie@gmail.com).
|
||||||
If WLED really brightens up your every day, you can [send me a small gift](https://paypal.me/aircoookie)!
|
If WLED really brightens up your every day, you can [![](https://img.shields.io/badge/send%20me%20a%20small%20gift-paypal-blue.svg?style=flat-square)](https://paypal.me/aircoookie)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
//see https://github.com/Aircoookie/WLED/issues/2 for flicker free ESP32 support
|
//see https://github.com/Aircoookie/WLED/issues/2 for flicker free ESP32 support
|
||||||
|
|
||||||
//PIN CONFIGURATION
|
//PIN CONFIGURATION
|
||||||
#define LEDPIN 3 //strip pin. Any for ESP32, gpio2 is recommended for ESP8266
|
#define LEDPIN 2 //strip pin. Any for ESP32, gpio2 is recommended for ESP8266
|
||||||
#define BTNPIN 0 //button pin. Needs to have pullup (gpio0 recommended)
|
#define BTNPIN 0 //button pin. Needs to have pullup (gpio0 recommended)
|
||||||
#define IR_PIN 4 //infrared pin.
|
#define IR_PIN 4 //infrared pin.
|
||||||
#define AUXPIN 15 //unused auxiliary output pin
|
#define AUXPIN 15 //unused auxiliary output pin
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
#include "palettes.h"
|
#include "palettes.h"
|
||||||
|
|
||||||
#define IBN 5100
|
#define IBN 5100
|
||||||
#define LED_SKIP_AMOUNT 24
|
#define LED_SKIP_AMOUNT 1
|
||||||
|
|
||||||
void WS2812FX::init(bool supportWhite, uint16_t countPixels, bool skipFirst)
|
void WS2812FX::init(bool supportWhite, uint16_t countPixels, bool skipFirst)
|
||||||
{
|
{
|
||||||
@ -906,7 +906,7 @@ uint16_t WS2812FX::running_base(bool saw) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
s = sin8(a);
|
s = sin8(a);
|
||||||
setPixelColor(SEGMENT.start + i, color_blend(SEGMENT.colors[1], color_from_palette(SEGMENT.start + i, true, PALETTE_SOLID_WRAP, 0), s));
|
setPixelColor(SEGMENT.start + i, color_blend(color_from_palette(SEGMENT.start + i, true, PALETTE_SOLID_WRAP, 0), SEGMENT.colors[1], s));
|
||||||
}
|
}
|
||||||
SEGMENT_RUNTIME.counter_mode_step += SEGMENT.speed;
|
SEGMENT_RUNTIME.counter_mode_step += SEGMENT.speed;
|
||||||
return 20;
|
return 20;
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
|
|
||||||
//version code in format yymmddb (b = daily build)
|
//version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 1902053
|
#define VERSION 1902091
|
||||||
char versionString[] = "0.8.3-dev";
|
char versionString[] = "0.8.3-dev";
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user