Code Monkey home page Code Monkey logo

fb.light's Introduction

FB.Light WS2812B WiFi-LED-Strip-Controller

Based upon doctormord's great mixture, this software is intended to act as a full-featured WiFi-LED-Strip-Controller for WS2812B-LEDs. I added some new effects to doctormord's work and integrated Aaron Liddiment's Matrix and Text-Libs to implement a nice, NTP-driven clock. As a prove of concept I finally build a decent RGB-LED-Lamp (milk glass / 11x8 LEDs) with it:

Confetti-Mode Juggle-Mode Confetti-Mode with clock BPM-Mode with clock

Features

  • Runs on an ESP8266 (I used a NodeMCU-board with an ESP-12E).
  • Easy integration into your existing WiFi network.
  • Max. power consumption can be defined (#define MAX_CURRENT): Protects your power supply by cutting brightness if current draw exceeds configured value.
  • Responsive user interface which can be used with any desktop or mobile web browser.
  • Static color can be selected with a decent, delay-free colorwheel.
  • Many different effect-modes which can be tweaked and customized. They look great on both strips and matrices.
  • Customizable scrolling NTP-driven clock (only useful on a matrix with a minimum height of 7 pixel). Can be combined with the other effects.
  • Customizable scrolling text (only useful on a matrix with a minimum height of 7 pixel). Can be combined with the other effects.
  • API to integrate the controller in existing home automation environments.
  • Firmware upgradeable via web interface.
  • Debug-Output can be viewed via telnet session.

Used libraries / software

  • Please use v2.5.0 of the ESP8266 Board in the Arduino IDE.
  • Fork of FastLED 3.1.3 library (included in this repo: see libraries-folder!). We are using this fork because it supports DMA which removes flicker issues. Enabled via #define FASTLED_ESP8266_DMA. You must use pin 3 for your LED stripe!
  • RemoteDebug: Debug output is visible via a telnet session rather than printing to serial). Please use v2.0.0!
  • LEDMatrix by Aaron Liddiment (included in this repo: see libraries-folder!).
  • LEDText by Aaron Liddiment (included in this repo: see libraries-folder!).
  • NTPClient
  • WebSockets: Please use v2.0.0 / v2.0.1
  • WifiManager: Please use v0.13.0

How to start

  1. Wire your LEDs to your controller: In order to use the highly prefered DMA-Mode, you must use GPIO3 (RX on a NodeMCU) as the DATA_PIN!
  2. Copy libraries from the libraries-folder in this repo to your arduino libraries-folder and make sure your have the other needed libraries added via your Arduino IDE as well.
  3. Configure the Arduino IDE to communicate with the ESP8266. Or export the bin file from the IDE and use your favourite flashing tool instead.
  4. Compile and upload the sketch (from this repo). The sketch is setup for a 88 pixel WS2812B GRB LED Strip on pin 3 with DMA enabled. Matrix is configured as a vertical 11x8 (width x height) layout with the beginning at bottom right (change the applicable options in hardware.h to your desire).
  5. On first launch, the ESP8266 will advertise it's own WiFi network for you to connect to. Once you connect to it, launch your browser and the web interface is self explanatory. (If the interface doesn't load, type in "192.168.4.1" into your browser and hit go).
  6. Once the ESP is on your wifi network, you can then upload the required files for the web interface by typing the IP address of the ESP followed by /upload (i.e. 192.168.1.20/upload). Then upload the files from the folder labeled upload these to ESP8266 from this repo.
  7. Once you have finished uploading, type in the IP of the ESP into your browser and you should be up and running!
  8. You can edit the location string shown in the web ui by editing the file location.txt before you upload it. Or edit the file afterwards by typing the IP address of the ESP followed by /edit (i.e. 192.168.1.20/edit) using the integrated ESP Editor (should be used with Google Chrome).

Updating the firmware

After the first flash, you can update the firmware via OTA by typing the IP address of the ESP followed by /update (i.e. 192.168.1.20/update). WiFi config, settings and uploaded files will stay untouched.

API

Useful URLs:

  1. /upload: Upload files to SPIFFS-filesystem (used to upload/update web ui)
  2. /update: Upload new firmware here (web ui and settings will be kept).
  3. /edit: Edit/upload files on the SPIFFS filesystem.
  4. /graphs.htm: Some statistic graphs of system ressources.
  5. /restart: Reboot the system (make sure to save changed settings before!).
  6. /reset_wlan: Delete the wifi settings (system will come up with the default WiFi configuration ap to connect to).

API-Endpoints:

  1. /set_brightness: Set overall brightness. Possible parameters: Brightness in percent c=(0-100) or absolute brightness p=(0-255).
  2. /set_clock_brightness: Set brightness of the clock. Possible parameters: Brightness in percent c=(0-100) or absolute brightness p=(0-255).
  3. /set_clock: Show clock. Possible parameters: Turn on s=1 (clock runs immediately) or turn off s=0.
  4. /set_text: Show text. Possible parameters: Turn on s=1 (text runs immediately) or turn off s=0.
  5. /set_text_brightness: Set brightness of the scrolling text. Possible parameters: Brightness in percent c=(0-100) or absolute brightness p=(0-255).
  6. /update_text: Updates custom scrolling text and display it once. Parameters: text=(Max. 255 chars of text) and (optional) color=(0-6).
  7. /get_brightness: Returns the current overall brightness in percent.
  8. /get_clock_brightness: Returns the current brightness of the clock in percent.
  9. /get_text_brightness: Returns the current brightness of the scrolling text in percent.
  10. /get_switch: Returns 0 if current mode is OFF, otherwise 1.
  11. /get_color: Returns the current main color in HEX.
  12. /status: Returns JSON of current settings.
  13. /restore_defaults: Restores default effect settings.
  14. /load_settings: Load effect settings from memory.
  15. /save_settings: Save current effect settings to memory.

Set Mode via API:

  1. /off: OFF (even glitter, clock and text are disabled)
  2. /all: SOLID COLOR (set color via additional parameter: rgb=#COLORHEXVALUE or r=0-255, g=0-255, b=0-255)
  3. /rainbow: RAINBOW
  4. /confetti: CONFETTI
  5. /sinelon: SINELON
  6. /juggle: JUGGLE
  7. /bpm: BPM
  8. /ripple: RIPPLE
  9. /comet: COMET
  10. /wipe: WIPE
  11. /tv: TV
  12. /fire: FIRE
  13. /frainbow: FIRE RAINBOW
  14. /fworks: FIREWORKS
  15. /fwsingle: FIREWORKS SINGLE
  16. /fwrainbow: FIREWORKS RAINBOW
  17. /colorflow: COLORFLOW
  18. /caleidoscope1: CALEIDOSCOPE 1
  19. /caleidoscope2: CALEIDOSCOPE 2
  20. /caleidoscope3: CALEIDOSCOPE 3
  21. /caleidoscope4: CALEIDOSCOPE 4
  22. /blank: BLANK (same as OFF but with glitter, clock and text enabled)

License

This project is released under the GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007.

Griswold is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as 
published by the Free Software Foundation, either version 3 of 
the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

fb.light's People

Contributors

bombcheck avatar doctormord avatar ia-nbernhardt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

fb.light's Issues

Compiling error

Hello im getting this error suring arduino ide compiling:

exit status 1
'cLEDMatrix' does not name a type

that's in hardware.h
line 34
cLEDMatrix<-MATRIX_WIDTH, MATRIX_HEIGHT, MATRIX_TYPE> buffer; // Default starting point: Bottom-Left. Invert (-) MATRIX_WIDTH and/or MATRIX_HEIGHT to match your physical matrix layout

what's wrong ?
Thanks

i keep getting this error. kindly help

In file included from sketch\definitions.h:37:0,

             from C:\Users\JO\Downloads\led\FB.Light-master\arduino\FB.Light\FB.Light.ino:49:

D:\JO\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.003

pragma message "FastLED version 3.003.003"

                 ^

In file included from D:\JO\Documents\Arduino\libraries\FastLED/FastLED.h:65:0,

             from sketch\definitions.h:37,

             from C:\Users\JO\Downloads\led\FB.Light-master\arduino\FB.Light\FB.Light.ino:49:

D:\JO\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output

pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"

                   ^

In file included from C:\Program Files (x86)\Arduino\libraries\LEDMatrix\LEDMatrix.cpp:10:0:

D:\JO\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.003

pragma message "FastLED version 3.003.003"

                 ^

In file included from D:\JO\Documents\Arduino\libraries\FastLED/FastLED.h:65:0,

             from C:\Program Files (x86)\Arduino\libraries\LEDMatrix\LEDMatrix.cpp:10:

D:\JO\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output

pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"

                   ^

In file included from C:\Program Files (x86)\Arduino\libraries\LEDText\LEDText.cpp:12:0:

D:\JO\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.003

pragma message "FastLED version 3.003.003"

                 ^

In file included from D:\JO\Documents\Arduino\libraries\FastLED/FastLED.h:65:0,

             from C:\Program Files (x86)\Arduino\libraries\LEDText\LEDText.cpp:12:

D:\JO\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output

pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"

                   ^

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\RemoteDebugWS.cpp.o: in function `webSocketEvent(unsigned char, WStype_t, unsigned char*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src/RemoteDebugWS.cpp:231: multiple definition of `webSocketEvent(unsigned char, WStype_t, unsigned char*, unsigned int)'; sketch\FB.Light.ino.cpp.o:sketch/request_handlers.h:128: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::write(WSclient_t*, unsigned char*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:610: multiple definition of `WebSockets::write(WSclient_t*, unsigned char*, unsigned int)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:666: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::sendFrame(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool, bool)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:84: multiple definition of `WebSockets::sendFrame(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool, bool)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:196: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::clientDisconnect(WSclient_t*, unsigned short, char*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:59: multiple definition of `WebSockets::clientDisconnect(WSclient_t*, unsigned short, char*, unsigned int)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:65: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocketPayloadCb(WSclient_t*, bool, unsigned char*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:411: multiple definition of `WebSockets::handleWebsocketPayloadCb(WSclient_t*, bool, unsigned char*)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:464: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::headerDone(WSclient_t*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:271: multiple definition of `WebSockets::headerDone(WSclient_t*)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:324: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::base64_encode(unsigned char*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:512: multiple definition of `WebSockets::base64_encode(unsigned char*, unsigned int)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:568: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::acceptKey(String&)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:485: multiple definition of `WebSockets::acceptKey(String&)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:541: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::write(WSclient_t*, char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:650: multiple definition of `WebSockets::write(WSclient_t*, char const*)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:709: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::readCb(WSclient_t*, unsigned char*, unsigned int, std::function<void (WSclient_t*, bool)>)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:535: multiple definition of `WebSockets::readCb(WSclient_t*, unsigned char*, unsigned int, std::function<void (WSclient_t*, bool)>)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:591: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocketWaitFor(WSclient_t*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:295: multiple definition of `WebSockets::handleWebsocketWaitFor(WSclient_t*, unsigned int)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:348: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocketCb(WSclient_t*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:325: multiple definition of `WebSockets::handleWebsocketCb(WSclient_t*)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:379: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocket(WSclient_t*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:284: multiple definition of `WebSockets::handleWebsocket(WSclient_t*)'; libraries\arduinoWebSockets-master\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.cpp:337: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::messageReceived(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:319: multiple definition of `WebSocketsClient::messageReceived(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:437: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::clientDisconnect(WSclient_t*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:349: multiple definition of `WebSocketsClient::clientDisconnect(WSclient_t*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:470: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::clientIsConnected(WSclient_t*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:403: multiple definition of `WebSocketsClient::clientIsConnected(WSclient_t*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:524: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::WebSocketsClient()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:28: multiple definition of `WebSocketsClient::WebSocketsClient()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:28: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::WebSocketsClient()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:28: multiple definition of `WebSocketsClient::WebSocketsClient()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:28: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::begin(char const*, unsigned short, char const*, char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:42: multiple definition of `WebSocketsClient::begin(char const*, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:45: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::begin(String, unsigned short, String, String)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:83: multiple definition of `WebSocketsClient::begin(String, unsigned short, String, String)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:93: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::begin(IPAddress, unsigned short, char const*, char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:87: multiple definition of `WebSocketsClient::begin(IPAddress, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:97: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIO(char const*, unsigned short, char const*, char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:103: multiple definition of `WebSocketsClient::beginSocketIO(char const*, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:151: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIO(String, unsigned short, String, String)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:108: multiple definition of `WebSocketsClient::beginSocketIO(String, unsigned short, String, String)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:156: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIOSSL(char const*, unsigned short, char const*, char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:113: multiple definition of `WebSocketsClient::beginSocketIOSSL(char const*, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:161: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIOSSL(String, unsigned short, String, String)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:120: multiple definition of `WebSocketsClient::beginSocketIOSSL(String, unsigned short, String, String)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:168: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::onEvent(std::function<void (WStype_t, unsigned char*, unsigned int)>)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:181: multiple definition of `WebSocketsClient::onEvent(std::function<void (WStype_t, unsigned char*, unsigned int)>)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:286: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(unsigned char*, unsigned int, bool)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:193: multiple definition of `WebSocketsClient::sendTXT(unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:298: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(unsigned char const*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:203: multiple definition of `WebSocketsClient::sendTXT(unsigned char const*, unsigned int)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:308: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(char*, unsigned int, bool)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:207: multiple definition of `WebSocketsClient::sendTXT(char*, unsigned int, bool)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:312: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(char const*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:211: multiple definition of `WebSocketsClient::sendTXT(char const*, unsigned int)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:316: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(String&)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:215: multiple definition of `WebSocketsClient::sendTXT(String&)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:320: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendBIN(unsigned char*, unsigned int, bool)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:227: multiple definition of `WebSocketsClient::sendBIN(unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:338: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendBIN(unsigned char const*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:234: multiple definition of `WebSocketsClient::sendBIN(unsigned char const*, unsigned int)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:345: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendPing(unsigned char*, unsigned int)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:244: multiple definition of `WebSocketsClient::sendPing(unsigned char*, unsigned int)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:355: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendPing(String&)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:251: multiple definition of `WebSocketsClient::sendPing(String&)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:365: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::disconnect()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:259: multiple definition of `WebSocketsClient::disconnect()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:373: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::~WebSocketsClient()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:35: multiple definition of `WebSocketsClient::~WebSocketsClient()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:38: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::~WebSocketsClient()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:35: multiple definition of `WebSocketsClient::~WebSocketsClient()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:38: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::~WebSocketsClient()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:35: multiple definition of `WebSocketsClient::~WebSocketsClient()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:38: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setAuthorization(char const*, char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:270: multiple definition of `WebSocketsClient::setAuthorization(char const*, char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:384: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setAuthorization(char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:283: multiple definition of `WebSocketsClient::setAuthorization(char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:397: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setExtraHeaders(char const*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:296: multiple definition of `WebSocketsClient::setExtraHeaders(char const*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:410: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setReconnectInterval(unsigned long)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:305: multiple definition of `WebSocketsClient::setReconnectInterval(unsigned long)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:419: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendHeader(WSclient_t*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:460: multiple definition of `WebSocketsClient::sendHeader(WSclient_t*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:590: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::handleHeader(WSclient_t*, String*)':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:551: multiple definition of `WebSocketsClient::handleHeader(WSclient_t*, String*)'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:682: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::handleClientData()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:433: multiple definition of `WebSocketsClient::handleClientData()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:553: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::connectedCb()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:676: multiple definition of `WebSocketsClient::connectedCb()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:838: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::loop()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:129: multiple definition of `WebSocketsClient::loop()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:200: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::connectFailedCb()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:717: multiple definition of `WebSocketsClient::connectFailedCb()'; libraries\arduinoWebSockets-master\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsClient.cpp:888: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::begin()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:65: multiple definition of `WebSocketsServer::begin()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:909: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::close()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:112: multiple definition of `WebSocketsServer::close()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:916: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::~WebSocketsServer()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:52: multiple definition of `WebSocketsServer::~WebSocketsServer()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:67: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::~WebSocketsServer()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:52: multiple definition of `WebSocketsServer::~WebSocketsServer()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:67: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::~WebSocketsServer()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:52: multiple definition of `WebSocketsServer::~WebSocketsServer()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:67: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::handleNewClients()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:623: multiple definition of `WebSocketsServer::handleNewClients()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:633: first defined here

c:/users/jo/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-4-b40a506/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::loop()':

D:\JO\Documents\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:130: multiple definition of `WebSocketsServer::loop()'; libraries\arduinoWebSockets-master\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets-master\src/WebSocketsServer.cpp:941: first defined here

collect2.exe: error: ld returned 1 exit status

exit status 1

Error compiling for board Generic ESP8266 Module.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

Some IDE compiling errors

hi there! iยดm trying to upload the stuff to my nodemcu but get some erros compiling with arduino IDE:

In file included from C:\Users\mario\Downloads\FB.Light-dev\FB.Light-dev\arduino\FB.Light\FB.Light.ino:49:0:

C:\Users\mario\AppData\Local\Temp\arduino_build_289382\sketch\definitions.h:22:0: warning: "DEBUG_WEBSOCKETS" redefined [enabled by default]

#define DEBUG_WEBSOCKETS(...) Serial.printf( VA_ARGS )

^

In file included from C:\Users\mario\Downloads\FB.Light-dev\FB.Light-dev\arduino\FB.Light\FB.Light.ino:39:0:

C:\Users\mario\Documents\Arduino\libraries\arduinoWebSockets-master\src/WebSockets.h:52:0: note: this is the location of the previous definition

#define DEBUG_WEBSOCKETS(...)

can someone give me a hand please?

Stuck in library hell !!

I've got an odd problem where aparently I've got multiple definitions of websocket functions comming from the remote debug library. Obviusly if i remove the library it wont compile.
What version of the IDE are you using and what os? I'm on 1.8.13 on windows 10.
Cheers.

cant compile, multiple definitions of websocketsserver:

Tried various versions of both esp8266 arduino core(2.7.* and 2.4.0, currently 2.5.0) and multiple versions of arduinoWebSockets. Doesnt compile.
shows:
`Arduino: 1.8.13 (Windows 10), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Disabled, 4M (2M SPIFFS), v2 Lower Memory, Disabled, None, Only Sketch, 115200"

In file included from sketch\definitions.h:37:0,

             from C:\Users\KaSeF\Downloads\FB.Light-master\FB.Light-master\arduino\FB.Light\FB.Light.ino:49:

C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:17:21: note: #pragma message: FastLED version 3.001.006

pragma message "FastLED version 3.001.006"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED/platforms/esp/8266/fastled_esp8266.h:6:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED/platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:55,

             from sketch\definitions.h:37,

             from C:\Users\KaSeF\Downloads\FB.Light-master\FB.Light-master\arduino\FB.Light\FB.Light.ino:49:

C:\Program Files (x86)\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266_dma.h:17:21: note: #pragma message: Using DMA-based RGBW controller as per FASTLED_RGBW define

pragma message "Using DMA-based RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:68:0,

             from sketch\definitions.h:37,

             from C:\Users\KaSeF\Downloads\FB.Light-master\FB.Light-master\arduino\FB.Light\FB.Light.ino:49:

C:\Program Files (x86)\Arduino\libraries\FastLED/fastspi.h:110:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output

pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"

                   ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\colorutils.cpp:7:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.cpp:2:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\bitswap.cpp:2:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\colorpalettes.cpp:4:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\hsv2rgb.cpp:4:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\lib8tion.cpp:3:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\noise.cpp:2:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\power_mgt.cpp:2:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\FastLED\wiring.cpp:2:

C:\Program Files (x86)\Arduino\libraries\FastLED\platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\LEDMatrix\LEDMatrix.cpp:10:0:

C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:17:21: note: #pragma message: FastLED version 3.001.006

pragma message "FastLED version 3.001.006"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED/platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED/platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\LEDMatrix\LEDMatrix.cpp:10:

C:\Program Files (x86)\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:68:0,

             from C:\Program Files (x86)\Arduino\libraries\LEDMatrix\LEDMatrix.cpp:10:

C:\Program Files (x86)\Arduino\libraries\FastLED/fastspi.h:110:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output

pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"

                   ^

In file included from C:\Program Files (x86)\Arduino\libraries\LEDText\LEDText.cpp:12:0:

C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:17:21: note: #pragma message: FastLED version 3.001.006

pragma message "FastLED version 3.001.006"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED/platforms/esp/8266/fastled_esp8266.h:8:0,

             from C:\Program Files (x86)\Arduino\libraries\FastLED/platforms.h:27,

             from C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:55,

             from C:\Program Files (x86)\Arduino\libraries\LEDText\LEDText.cpp:12:

C:\Program Files (x86)\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:11:21: note: #pragma message: Using RGBW controller as per FASTLED_RGBW define

pragma message "Using RGBW controller as per FASTLED_RGBW define"

                 ^

In file included from C:\Program Files (x86)\Arduino\libraries\FastLED/FastLED.h:68:0,

             from C:\Program Files (x86)\Arduino\libraries\LEDText\LEDText.cpp:12:

C:\Program Files (x86)\Arduino\libraries\FastLED/fastspi.h:110:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output

pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"

                   ^

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\RemoteDebugWS.cpp.o: in function `webSocketEvent(unsigned char, WStype_t, unsigned char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src/RemoteDebugWS.cpp:231: multiple definition of `webSocketEvent(unsigned char, WStype_t, unsigned char*, unsigned int)'; sketch\FB.Light.ino.cpp.o:sketch/request_handlers.h:128: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::write(WSclient_t*, unsigned char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:610: multiple definition of `WebSockets::write(WSclient_t*, unsigned char*, unsigned int)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:611: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::clientDisconnect(WSclient_t*, unsigned short, char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:59: multiple definition of `WebSockets::clientDisconnect(WSclient_t*, unsigned short, char*, unsigned int)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:59: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocketPayloadCb(WSclient_t*, bool, unsigned char*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:411: multiple definition of `WebSockets::handleWebsocketPayloadCb(WSclient_t*, bool, unsigned char*)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:412: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::headerDone(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:271: multiple definition of `WebSockets::headerDone(WSclient_t*)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:272: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::base64_encode(unsigned char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:512: multiple definition of `WebSockets::base64_encode(unsigned char*, unsigned int)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:513: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::acceptKey(String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:485: multiple definition of `WebSockets::acceptKey(String&)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:486: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::write(WSclient_t*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:650: multiple definition of `WebSockets::write(WSclient_t*, char const*)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:651: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::readCb(WSclient_t*, unsigned char*, unsigned int, std::function<void (WSclient_t*, bool)>)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:535: multiple definition of `WebSockets::readCb(WSclient_t*, unsigned char*, unsigned int, std::function<void (WSclient_t*, bool)>)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:536: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocketWaitFor(WSclient_t*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:295: multiple definition of `WebSockets::handleWebsocketWaitFor(WSclient_t*, unsigned int)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:296: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocketCb(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:325: multiple definition of `WebSockets::handleWebsocketCb(WSclient_t*)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:326: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSockets.cpp.o: in function `WebSockets::handleWebsocket(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSockets.cpp:284: multiple definition of `WebSockets::handleWebsocket(WSclient_t*)'; libraries\arduinoWebSockets\WebSockets.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSockets.cpp:285: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::messageReceived(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:319: multiple definition of `WebSocketsClient::messageReceived(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:318: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::clientDisconnect(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:349: multiple definition of `WebSocketsClient::clientDisconnect(WSclient_t*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:348: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::clientIsConnected(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:403: multiple definition of `WebSocketsClient::clientIsConnected(WSclient_t*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:402: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::WebSocketsClient()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:28: multiple definition of `WebSocketsClient::WebSocketsClient()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:28: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::WebSocketsClient()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:28: multiple definition of `WebSocketsClient::WebSocketsClient()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:28: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::begin(char const*, unsigned short, char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:42: multiple definition of `WebSocketsClient::begin(char const*, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:41: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::begin(String, unsigned short, String, String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:84: multiple definition of `WebSocketsClient::begin(String, unsigned short, String, String)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:83: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::begin(IPAddress, unsigned short, char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:87: multiple definition of `WebSocketsClient::begin(IPAddress, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:86: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSSL(char const*, unsigned short, char const*, char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:92: multiple definition of `WebSocketsClient::beginSSL(char const*, unsigned short, char const*, char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:91: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSSL(String, unsigned short, String, String, String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:99: multiple definition of `WebSocketsClient::beginSSL(String, unsigned short, String, String, String)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:98: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIO(char const*, unsigned short, char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:103: multiple definition of `WebSocketsClient::beginSocketIO(char const*, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:102: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIO(String, unsigned short, String, String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:109: multiple definition of `WebSocketsClient::beginSocketIO(String, unsigned short, String, String)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:108: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIOSSL(char const*, unsigned short, char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:113: multiple definition of `WebSocketsClient::beginSocketIOSSL(char const*, unsigned short, char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:112: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::beginSocketIOSSL(String, unsigned short, String, String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:121: multiple definition of `WebSocketsClient::beginSocketIOSSL(String, unsigned short, String, String)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:120: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::onEvent(std::function<void (WStype_t, unsigned char*, unsigned int)>)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:181: multiple definition of `WebSocketsClient::onEvent(std::function<void (WStype_t, unsigned char*, unsigned int)>)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:180: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:193: multiple definition of `WebSocketsClient::sendTXT(unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:192: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(unsigned char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:203: multiple definition of `WebSocketsClient::sendTXT(unsigned char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:202: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:207: multiple definition of `WebSocketsClient::sendTXT(char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:206: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:211: multiple definition of `WebSocketsClient::sendTXT(char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:210: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendTXT(String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:215: multiple definition of `WebSocketsClient::sendTXT(String&)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:214: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendBIN(unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:227: multiple definition of `WebSocketsClient::sendBIN(unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:226: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendBIN(unsigned char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:234: multiple definition of `WebSocketsClient::sendBIN(unsigned char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:233: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendPing(unsigned char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:244: multiple definition of `WebSocketsClient::sendPing(unsigned char*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:243: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendPing(String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:251: multiple definition of `WebSocketsClient::sendPing(String&)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:250: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::disconnect()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:259: multiple definition of `WebSocketsClient::disconnect()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:258: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::~WebSocketsClient()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:35: multiple definition of `WebSocketsClient::~WebSocketsClient()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:34: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::~WebSocketsClient()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:35: multiple definition of `WebSocketsClient::~WebSocketsClient()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:34: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::~WebSocketsClient()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:35: multiple definition of `WebSocketsClient::~WebSocketsClient()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:34: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setAuthorization(char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:270: multiple definition of `WebSocketsClient::setAuthorization(char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:269: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setAuthorization(char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:283: multiple definition of `WebSocketsClient::setAuthorization(char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:282: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setExtraHeaders(char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:296: multiple definition of `WebSocketsClient::setExtraHeaders(char const*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:295: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::setReconnectInterval(unsigned long)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:305: multiple definition of `WebSocketsClient::setReconnectInterval(unsigned long)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:304: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::sendHeader(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:460: multiple definition of `WebSocketsClient::sendHeader(WSclient_t*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:459: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::handleHeader(WSclient_t*, String*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:551: multiple definition of `WebSocketsClient::handleHeader(WSclient_t*, String*)'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:550: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::handleClientData()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:433: multiple definition of `WebSocketsClient::handleClientData()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:432: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::connectedCb()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:676: multiple definition of `WebSocketsClient::connectedCb()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:675: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::loop()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:129: multiple definition of `WebSocketsClient::loop()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:128: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsClient.cpp.o: in function `WebSocketsClient::connectFailedCb()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsClient.cpp:717: multiple definition of `WebSocketsClient::connectFailedCb()'; libraries\arduinoWebSockets\WebSocketsClient.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsClient.cpp:716: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::messageReceived(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:508: multiple definition of `WebSocketsServer::messageReceived(WSclient_t*, WSopcode_t, unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:508: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::clientDisconnect(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:536: multiple definition of `WebSocketsServer::clientDisconnect(WSclient_t*)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:536: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::clientIsConnected(WSclient_t*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:592: multiple definition of `WebSocketsServer::clientIsConnected(WSclient_t*)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:592: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::WebSocketsServer(unsigned short, String, String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:28: multiple definition of `WebSocketsServer::WebSocketsServer(unsigned short, String, String)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:28: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::WebSocketsServer(unsigned short, String, String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:28: multiple definition of `WebSocketsServer::WebSocketsServer(unsigned short, String, String)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:28: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::begin()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:65: multiple definition of `WebSocketsServer::begin()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:65: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendTXT(unsigned char, unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:178: multiple definition of `WebSocketsServer::sendTXT(unsigned char, unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:178: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendTXT(unsigned char, unsigned char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:192: multiple definition of `WebSocketsServer::sendTXT(unsigned char, unsigned char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:192: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendTXT(unsigned char, char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:196: multiple definition of `WebSocketsServer::sendTXT(unsigned char, char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:196: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendTXT(unsigned char, char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:200: multiple definition of `WebSocketsServer::sendTXT(unsigned char, char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:200: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendTXT(unsigned char, String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:204: multiple definition of `WebSocketsServer::sendTXT(unsigned char, String&)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:204: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastTXT(unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:215: multiple definition of `WebSocketsServer::broadcastTXT(unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:215: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastTXT(unsigned char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:236: multiple definition of `WebSocketsServer::broadcastTXT(unsigned char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:236: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastTXT(char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:240: multiple definition of `WebSocketsServer::broadcastTXT(char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:240: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastTXT(char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:244: multiple definition of `WebSocketsServer::broadcastTXT(char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:244: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastTXT(String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:248: multiple definition of `WebSocketsServer::broadcastTXT(String&)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:248: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendBIN(unsigned char, unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:260: multiple definition of `WebSocketsServer::sendBIN(unsigned char, unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:260: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendBIN(unsigned char, unsigned char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:271: multiple definition of `WebSocketsServer::sendBIN(unsigned char, unsigned char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:271: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastBIN(unsigned char*, unsigned int, bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:282: multiple definition of `WebSocketsServer::broadcastBIN(unsigned char*, unsigned int, bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:282: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastBIN(unsigned char const*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:299: multiple definition of `WebSocketsServer::broadcastBIN(unsigned char const*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:299: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendPing(unsigned char, unsigned char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:311: multiple definition of `WebSocketsServer::sendPing(unsigned char, unsigned char*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:311: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::sendPing(unsigned char, String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:322: multiple definition of `WebSocketsServer::sendPing(unsigned char, String&)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:322: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastPing(unsigned char*, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:332: multiple definition of `WebSocketsServer::broadcastPing(unsigned char*, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:332: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::broadcastPing(String&)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:349: multiple definition of `WebSocketsServer::broadcastPing(String&)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:349: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::disconnect()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:357: multiple definition of `WebSocketsServer::disconnect()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:357: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::close()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:112: multiple definition of `WebSocketsServer::close()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:112: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::~WebSocketsServer()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:52: multiple definition of `WebSocketsServer::~WebSocketsServer()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:52: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::~WebSocketsServer()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:52: multiple definition of `WebSocketsServer::~WebSocketsServer()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:52: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::~WebSocketsServer()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:52: multiple definition of `WebSocketsServer::~WebSocketsServer()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:52: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::disconnect(unsigned char)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:371: multiple definition of `WebSocketsServer::disconnect(unsigned char)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:371: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::setAuthorization(char const*, char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:387: multiple definition of `WebSocketsServer::setAuthorization(char const*, char const*)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:387: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::setAuthorization(char const*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:400: multiple definition of `WebSocketsServer::setAuthorization(char const*)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:400: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::connectedClients(bool)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:410: multiple definition of `WebSocketsServer::connectedClients(bool)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:410: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::remoteIP(unsigned char)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:430: multiple definition of `WebSocketsServer::remoteIP(unsigned char)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:430: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::newClient(WiFiClient*)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:450: multiple definition of `WebSocketsServer::newClient(WiFiClient*)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:450: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::handleNewClients()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:623: multiple definition of `WebSocketsServer::handleNewClients()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:623: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::hasMandatoryHeader(String)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:702: multiple definition of `WebSocketsServer::hasMandatoryHeader(String)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:702: first defined here

Multiple libraries were found for "WebSockets.h"

Used: C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets

Not used: C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets also dont use

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::handleHeader(WSclient_t*, String*)':

Not used: C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets_LATEST dont use

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:716: multiple definition of `WebSocketsServer::handleHeader(WSclient_t*, String*)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:716: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::handleClientData()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:666: multiple definition of `WebSocketsServer::handleClientData()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:666: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::loop()':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:130: multiple definition of `WebSocketsServer::loop()'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:130: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::onValidateHttpHeader(std::function<bool (String, String)>, char const**, unsigned int)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:156: multiple definition of `WebSocketsServer::onValidateHttpHeader(std::function<bool (String, String)>, char const**, unsigned int)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:156: first defined here

c:/users/kasef/appdata/local/arduino15/packages/esp8266/tools/xtensa-lx106-elf-gcc/2.5.0-3-20ed2b9/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld.exe: libraries\RemoteDebug\utility\WebSocketsServer.cpp.o: in function `WebSocketsServer::onEvent(std::function<void (unsigned char, WStype_t, unsigned char*, unsigned int)>)':

C:\Program Files (x86)\Arduino\libraries\RemoteDebug\src\utility/WebSocketsServer.cpp:142: multiple definition of `WebSocketsServer::onEvent(std::function<void (unsigned char, WStype_t, unsigned char*, unsigned int)>)'; libraries\arduinoWebSockets\WebSocketsServer.cpp.o:C:\Program Files (x86)\Arduino\libraries\arduinoWebSockets\src/WebSocketsServer.cpp:142: first defined here

collect2.exe: error: ld returned 1 exit status

exit status 1

Error compiling for board NodeMCU 1.0 (ESP-12E Module).

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
`
exit status 1

Error compiling for board NodeMCU 1.0 (ESP-12E Module).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.