Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions doc/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@ Instructions - Windows 10

- If using the Arduino IDE for Visual Studio (https://www.visualmicro.com/), be sure to click Tools - Visual Micro - Rescan Toolchains and Libraries

- You may see some error messages about missing files related to the
``SoftwareSerial`` library. These are because the ESP8266 version
of this library has been moved to a separate git submodule. In
order to get rid of these messages, initialize the submodule:

.. code:: bash

cd %USERPROFILE%\Documents\hardware\esp8266com\esp8266
git submodules update --init

- When later updating your local library, goto the esp8266 directory and do a git pull

.. code:: bash
Expand Down Expand Up @@ -174,3 +184,13 @@ Instructions - Other OS
python get.py

- Restart Arduino

- You may see some error messages about missing files related to the
``SoftwareSerial`` library. These are because the ESP8266 version
of this library has been moved to a separate git submodule. In
order to get rid of these messages, initialize the submodule:

.. code:: bash

cd esp8266
git submodules update --init