You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-28Lines changed: 23 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,6 @@ This project brings support for ESP8266 chip to the Arduino environment. It lets
5
5
6
6
ESP8266 Arduino core comes with libraries to communicate over WiFi using TCP and UDP, set up HTTP, mDNS, SSDP, and DNS servers, do OTA updates, use a file system in flash memory, work with SD cards, servos, SPI and I2C peripherals.
7
7
8
-
A large community is well established for questions and answers about Arduino for ESP8266 [ESP8266 Community Forum](http://www.esp8266.com/u/arduinoanswers)
@@ -18,30 +16,24 @@ A large community is well established for questions and answers about Arduino fo
18
16
-[Contributing](#contributing)
19
17
-[License and credits](#license-and-credits)
20
18
21
-
### Installing with Boards Manager ###
19
+
### Installing with Boards Manager
22
20
23
21
Starting with 1.6.4, Arduino allows installation of third-party platform packages using Boards Manager. We have packages available for Windows, Mac OS, and Linux (32 and 64 bit).
24
22
25
-
- Install Arduino 1.6.8 from the [Arduino website](http://www.arduino.cc/en/main/software).
23
+
- Install Arduino 1.8.2 from the [Arduino website](http://www.arduino.cc/en/main/software).
26
24
- Start Arduino and open Preferences window.
27
25
- Enter ```http://arduino.esp8266.com/stable/package_esp8266com_index.json``` into *Additional Board Manager URLs* field. You can add multiple URLs, separating them with commas.
28
26
- Open Boards Manager from Tools > Board menu and install *esp8266* platform (and don't forget to select your ESP8266 board from Tools > Board menu after installation).
29
27
30
-
The best place to ask questions related to this core is ESP8266 community forum: http://www.esp8266.com/arduino.
31
-
If you find this forum or the ESP8266 Boards Manager package useful, please consider supporting it with a donation. <br />
- Quick Start with [PlatformIO IDE](http://docs.platformio.org/page/ide/atom.html#quick-start) or [PlatformIO Core](http://docs.platformio.org/page/core.html)
custom settings, uploading to SPIFFS, Over-the-Air (OTA) or using stage version
72
64
-[Integration with Cloud and Standalone IDEs](http://docs.platformio.org/page/ide.html) -
73
65
Cloud9, Codeanywhere, Eclipse Che (Codenvy), Atom, CLion, Eclipse, Emacs, NetBeans, Qt Creator, Sublime Text, VIM and Visual Studio
@@ -80,30 +72,33 @@ Using make instead of the Arduino IDE makes it easier to do automated and produc
80
72
81
73
### Documentation
82
74
83
-
Documentation for latest development version:
84
-
85
-
-[Reference](doc/reference.md)
86
-
-[Libraries](doc/libraries.md)
87
-
-[File system](doc/filesystem.md)
88
-
-[OTA update](doc/ota_updates/readme.md)
89
-
-[Supported boards](doc/boards.md)
90
-
-[FAQ / Trubleshooting](doc/faq/readme.md)
91
-
-[Change log](doc/changes.md)
75
+
Documentation for latest development version: https://arduino-esp8266.readthedocs.io/en/latest/
92
76
93
77
### Issues and support ###
94
78
95
-
If you encounter an issue, you are welcome to submit it here on Github: https://github.com/esp8266/Arduino/issues.
96
-
Please provide as much context as possible: version which you are using (you can check it in Boards Manager), your sketch code, serial output, board model, IDE settings (board selection, flash size, etc).
79
+
[ESP8266 Community Forum](http://www.esp8266.com/u/arduinoanswers) is a well established community for questions and answers about Arduino for ESP8266.
80
+
81
+
If you find this forum useful, please consider supporting it with a donation. <br />
If you encounter an issue which you think is a bug in the ESP8266 Arduino Core or the associated libraries, you are welcome to submit it here on Github: https://github.com/esp8266/Arduino/issues.
85
+
86
+
Please provide as much context as possible:
97
87
98
-
If you can not find the answers above, you can also try [ESP8266 Community Forum](http://www.esp8266.com/arduino)
88
+
- ESP8266 Arduino core version which you are using (you can check it in Boards Manager)
89
+
- your sketch code; please wrap it into a code block, see [Github markdown manual](https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code)
90
+
- when encountering an issue which happens at run time, attach serial output. Wrap it into a code block, just like the code.
91
+
- for issues which happen at compile time, enable verbose compiler output in the IDE preferences, and attach that output (also inside a code block)
92
+
- ESP8266 development board model
93
+
- IDE settings (board choich, flash size)
99
94
100
95
### Contributing
101
96
102
-
For minor fixes of code and documentation, go ahead and submit a pull request.
97
+
For minor fixes of code and documentation, please go ahead and submit a pull request.
103
98
104
99
Check out the list of issues which are easy to fix — [easy issues for 2.4.0](https://github.com/esp8266/Arduino/issues?q=is%3Aopen+is%3Aissue+milestone%3A2.4.0+label%3A%22level%3A+easy%22). Working on them is a great way to move the project forward.
105
100
106
-
Larger changes (rewriting parts of existing code from scratch, adding new functions to the core, adding new libraries) should generally be discussed [in the chat](https://gitter.im/esp8266/Arduino) first.
101
+
Larger changes (rewriting parts of existing code from scratch, adding new functions to the core, adding new libraries) should generally be discussed by opening an issue first.
107
102
108
103
Feature branches with lots of small commits (especially titled "oops", "fix typo", "forgot to add file", etc.) should be squashed before opening a pull request. At the same time, please refrain from putting multiple unrelated changes into a single pull request.
0 commit comments