-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved and split file; Enhanced content
- Loading branch information
Showing
4 changed files
with
666 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ESP8266 Install | ||
|
||
<Badge type="warning" text="TODO" />Make this page look like the Controller Development Environment instructions | ||
|
||
## Installing and Updating ESP Core | ||
|
||
### Install | ||
|
||
Add the ESP32 board manager packages: | ||
|
||
``` | ||
arduino-cli config set board_manager.additional_urls https://arduino.esp8266.com/stable/package_esp8266com_index.json | ||
``` | ||
|
||
Update the index: | ||
|
||
``` | ||
arduino-cli core update-index | ||
``` | ||
|
||
Install ESP8266 core, version 3.1.2: | ||
|
||
``` | ||
arduino-cli core install esp8266:[email protected] | ||
``` | ||
|
||
Verify the installation was successful, and optionally remove any other cores: | ||
``` | ||
arduino-cli core list | ||
``` | ||
|
||
|
Oops, something went wrong.