Rename files to remove wled_

This commit is contained in:
Travis J Dean 2020-03-28 08:30:51 -04:00
parent b8342f1c9c
commit f35ab125ec
42 changed files with 1772 additions and 1772 deletions

View File

@ -1,9 +1,9 @@
#include "wled_alexa.h" #include "alexa.h"
#include "wled.h" #include "wled.h"
#include "const.h" #include "const.h"
#include "wled_led.h" #include "led.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_colors.h" #include "colors.h"
#ifndef WLED_DISABLE_ALEXA #ifndef WLED_DISABLE_ALEXA
void onAlexaChange(EspalexaDevice* dev); void onAlexaChange(EspalexaDevice* dev);

View File

@ -1,9 +1,9 @@
#include "wled_blynk.h" #include "blynk.h"
#include "const.h" #include "const.h"
#include "wled.h" #include "wled.h"
#include "src/dependencies/blynk/Blynk/BlynkHandlers.h" #include "src/dependencies/blynk/Blynk/BlynkHandlers.h"
#include "wled_led.h" #include "led.h"
#include "wled_colors.h" #include "colors.h"
uint16_t blHue = 0; uint16_t blHue = 0;
byte blSat = 255; byte blSat = 255;

View File

@ -1,8 +1,8 @@
#include "wled_button.h" #include "button.h"
#include "wled.h" #include "wled.h"
#include "wled_led.h" #include "led.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_set.h" #include "set.h"
/* /*
* Physical IO * Physical IO

View File

@ -1,4 +1,4 @@
#include "wled_colors.h" #include "colors.h"
#include "wled.h" #include "wled.h"
void colorFromUint32(uint32_t in, bool secondary) void colorFromUint32(uint32_t in, bool secondary)

View File

@ -1,4 +1,4 @@
#include "wled_cronixie.h" #include "cronixie.h"
#include "wled.h" #include "wled.h"
#ifndef WLED_DISABLE_CRONIXIE #ifndef WLED_DISABLE_CRONIXIE

View File

@ -1,4 +1,4 @@
#include "wled_dmx.h" #include "dmx.h"
#include "wled.h" #include "wled.h"
#ifdef WLED_ENABLE_DMX #ifdef WLED_ENABLE_DMX

View File

@ -1,9 +1,9 @@
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled.h" #include "wled.h"
#include "wled_cronixie.h" #include "cronixie.h"
#include "wled_ntp.h" #include "ntp.h"
#include "wled_set.h" #include "set.h"
#include "wled_led.h" #include "led.h"
//eeprom Version code, enables default settings instead of 0 init on update //eeprom Version code, enables default settings instead of 0 init on update

View File

@ -1,7 +1,7 @@
#include "wled_file.h" #include "file.h"
#include "wled.h" #include "wled.h"
#include "wled_led.h" #include "led.h"
#include "wled_notify.h" #include "notify.h"
//filesystem //filesystem
#ifndef WLED_DISABLE_FILESYSTEM #ifndef WLED_DISABLE_FILESYSTEM

View File

@ -1,9 +1,9 @@
#include "wled_hue.h" #include "hue.h"
#include "wled.h" #include "wled.h"
#include "wled_colors.h" #include "colors.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_notify.h" #include "notify.h"
#include "wled_led.h" #include "led.h"
#ifndef WLED_DISABLE_HUESYNC #ifndef WLED_DISABLE_HUESYNC

View File

@ -1,8 +1,8 @@
#include "wled_ir.h" #include "ir.h"
#include "wled.h" #include "wled.h"
#include "wled_led.h" #include "led.h"
#include "wled_colors.h" #include "colors.h"
#include "wled_eeprom.h" #include "eeprom.h"
#if defined(WLED_DISABLE_INFRARED) #if defined(WLED_DISABLE_INFRARED)
void handleIR(){} void handleIR(){}

View File

@ -1,7 +1,7 @@
#include "wled_json.h" #include "json.h"
#include "wled.h" #include "wled.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_led.h" #include "led.h"
void deserializeSegment(JsonObject elem, byte it) void deserializeSegment(JsonObject elem, byte it)
{ {

View File

@ -1,10 +1,10 @@
#include "wled_led.h" #include "led.h"
#include "wled.h" #include "wled.h"
#include "wled_notify.h" #include "notify.h"
#include "wled_blynk.h" #include "blynk.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_mqtt.h" #include "mqtt.h"
#include "wled_colors.h" #include "colors.h"
void setValuesFromMainSeg() void setValuesFromMainSeg()
{ {

View File

@ -1,10 +1,10 @@
#include "wled_mqtt.h" #include "mqtt.h"
#include "wled.h" #include "wled.h"
#include "wled_notify.h" #include "notify.h"
#include "wled_led.h" #include "led.h"
#include "wled_colors.h" #include "colors.h"
#include "wled_xml.h" #include "xml.h"
#include "wled_set.h" #include "set.h"
#ifdef WLED_ENABLE_MQTT #ifdef WLED_ENABLE_MQTT
#define MQTT_KEEP_ALIVE_TIME 60 // contact the MQTT broker every 60 seconds #define MQTT_KEEP_ALIVE_TIME 60 // contact the MQTT broker every 60 seconds

View File

@ -1,7 +1,7 @@
#include "wled_notify.h" #include "notify.h"
#include "wled.h" #include "wled.h"
#include "src/dependencies/e131/ESPAsyncE131.h" #include "src/dependencies/e131/ESPAsyncE131.h"
#include "wled_led.h" #include "led.h"
#define WLEDPACKETSIZE 29 #define WLEDPACKETSIZE 29
#define UDP_IN_MAXSIZE 1472 #define UDP_IN_MAXSIZE 1472

View File

@ -1,6 +1,6 @@
#include "wled_ntp.h" #include "ntp.h"
#include "wled.h" #include "wled.h"
#include "wled_eeprom.h" #include "eeprom.h"
TimeChangeRule UTCr = {Last, Sun, Mar, 1, 0}; // UTC TimeChangeRule UTCr = {Last, Sun, Mar, 1, 0}; // UTC
Timezone tzUTC(UTCr, UTCr); Timezone tzUTC(UTCr, UTCr);

View File

@ -1,7 +1,6 @@
#ifndef WLED_NTP_H #ifndef WLED_NTP_H
#define WLED_NTP_H #define WLED_NTP_H
#include <Arduino.h> #include <Arduino.h>
#include "timezone/Timezone.h"
/* /*
* Acquires time from NTP server * Acquires time from NTP server
*/ */

View File

@ -1,7 +1,7 @@
#include "wled_overlay.h" #include "overlay.h"
#include "wled.h" #include "wled.h"
#include "wled_cronixie.h" #include "cronixie.h"
#include "wled_ntp.h" #include "ntp.h"
void initCronixie() void initCronixie()
{ {

View File

@ -1,9 +1,9 @@
#include "wled_server.h" #include "server.h"
#include "wled.h" #include "wled.h"
#include "wled_file.h" #include "file.h"
#include "wled_set.h" #include "set.h"
#include "wled_json.h" #include "json.h"
#include "wled_xml.h" #include "xml.h"
//Is this an IP? //Is this an IP?

View File

@ -1,13 +1,13 @@
#include "wled_set.h" #include "set.h"
#include "wled.h" #include "wled.h"
#include "wled_colors.h" #include "colors.h"
#include "wled_hue.h" #include "hue.h"
#include "wled_led.h" #include "led.h"
#include "wled_blynk.h" #include "blynk.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_alexa.h" #include "alexa.h"
#include "wled_cronixie.h" #include "cronixie.h"
#include "wled_xml.h" #include "xml.h"
void _setRandomColor(bool _sec,bool fromButton) void _setRandomColor(bool _sec,bool fromButton)
{ {

View File

@ -1,19 +1,20 @@
#include "wled.h" #include "wled.h"
#include <Arduino.h> #include <Arduino.h>
#include "wled_led.h" #include "led.h"
#include "wled_ir.h" #include "ir.h"
#include "wled_notify.h" #include "notify.h"
#include "wled_alexa.h" #include "alexa.h"
#include "wled_overlay.h" #include "overlay.h"
#include "wled_file.h" #include "file.h"
#include "wled_button.h" #include "button.h"
#include "wled_ntp.h" #include "ntp.h"
#include "wled_usermod.h" #include "usermod.h"
#include "wled_blynk.h" #include "blynk.h"
#include "wled_hue.h" #include "hue.h"
#include "wled_mqtt.h" #include "mqtt.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_server.h" #include "server.h"
// replaced
// Global Variable definitions // Global Variable definitions
char versionString[] = "0.9.1"; char versionString[] = "0.9.1";

View File

@ -1,7 +1,7 @@
#include "wled_xml.h" #include "xml.h"
#include "wled.h" #include "wled.h"
#include "wled_eeprom.h" #include "eeprom.h"
#include "wled_ntp.h" #include "ntp.h"
//build XML response to HTTP /win API request //build XML response to HTTP /win API request