Arduino-master esp8266

所属分类:单片机开发
开发工具:C/C++
文件大小:19143KB
下载次数:0
上传日期:2019-04-06 20:42:03
上 传 者yyyuuu
说明:  wifi 嵌入式开发性价比最好的案例,对创客有参考意义
(The Best Case of Wifi Embedded Development Performance-Cost Ratio,It is useful to chuangke)

文件列表:
.travis.yml (1094, 2017-07-23)
ISSUE_TEMPLATE.md (886, 2017-07-23)
LICENSE (26529, 2017-07-23)
boards.txt (88001, 2017-07-23)
bootloaders (0, 2017-07-23)
bootloaders\eboot (0, 2017-07-23)
bootloaders\eboot\LICENSE (1434, 2017-07-23)
bootloaders\eboot\Makefile (1179, 2017-07-23)
bootloaders\eboot\eboot.c (4152, 2017-07-23)
bootloaders\eboot\eboot.elf (10352, 2017-07-23)
bootloaders\eboot\eboot.ld (4558, 2017-07-23)
bootloaders\eboot\eboot_command.c (1635, 2017-07-23)
bootloaders\eboot\eboot_command.h (836, 2017-07-23)
bootloaders\eboot\flash.c (1368, 2017-07-23)
bootloaders\eboot\flash.h (1157, 2017-07-23)
bootloaders\eboot\rom.ld (14427, 2017-07-23)
cores (0, 2017-07-23)
cores\esp8266 (0, 2017-07-23)
cores\esp8266\Arduino.h (8735, 2017-07-23)
cores\esp8266\Client.h (1631, 2017-07-23)
cores\esp8266\Esp.cpp (14714, 2017-07-23)
cores\esp8266\Esp.h (4872, 2017-07-23)
cores\esp8266\FS.cpp (6852, 2017-07-23)
cores\esp8266\FS.h (3395, 2017-07-23)
cores\esp8266\FSImpl.h (2317, 2017-07-23)
cores\esp8266\HardwareSerial.cpp (4176, 2017-07-23)
cores\esp8266\HardwareSerial.h (4119, 2017-07-23)
cores\esp8266\IPAddress.cpp (3149, 2017-07-23)
cores\esp8266\IPAddress.h (3240, 2017-07-23)
cores\esp8266\MD5Builder.cpp (2383, 2017-07-23)
cores\esp8266\MD5Builder.h (1751, 2017-07-23)
cores\esp8266\Print.cpp (6915, 2017-07-23)
cores\esp8266\Print.h (3021, 2017-07-23)
cores\esp8266\Printable.h (1321, 2017-07-23)
cores\esp8266\Schedule.cpp (2064, 2017-07-23)
cores\esp8266\Schedule.h (923, 2017-07-23)
cores\esp8266\Server.h (960, 2017-07-23)
... ...

Arduino core for ESP8266 WiFi chip =========================================== This project brings support for ESP8266 chip to the Arduino environment. It lets you write sketches using familiar Arduino functions and libraries, and run them directly on ESP8266, no external microcontroller required. 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. # Contents - Installing options: - [Using Boards Manager](#installing-with-boards-manager) - [Using git version](#using-git-version) - [Using PlatformIO](#using-platformio) - [Building with make](#building-with-make) - [Documentation](#documentation) - [Issues and support](#issues-and-support) - [Contributing](#contributing) - [License and credits](#license-and-credits) ### Installing with Boards Manager Starting with 1.***, Arduino allows installation of third-party platform packages using Boards Manager. We have packages available for Windows, Mac OS, and Linux (32 and *** bit). - Install Arduino 1.8.2 from the [Arduino website](http://www.arduino.cc/en/main/software). - Start Arduino and open Preferences window. - 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. - 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). #### Latest release [![Latest release](https://img.shields.io/github/release/esp8266/Arduino.svg)](https://github.com/esp8266/Arduino/releases/latest/) Boards manager link: `http://arduino.esp8266.com/stable/package_esp8266com_index.json` Documentation: [http://esp8266.github.io/Arduino/versions/2.3.0/](http://esp8266.github.io/Arduino/versions/2.3.0/) ### Using git version [![Linux build status](https://travis-ci.org/esp8266/Arduino.svg)](https://travis-ci.org/esp8266/Arduino) - Install Arduino 1.8.2 from the [Arduino website](http://www.arduino.cc/en/main/software). - Go to Arduino directory - Clone this repository into hardware/esp8266com/esp8266 directory (or clone it elsewhere and create a symlink) ```bash cd hardware mkdir esp8266com cd esp8266com git clone https://github.com/esp8266/Arduino.git esp8266 ``` - Download binary tools (you need Python 2.7) ```bash cd esp8266/tools python get.py ``` - Restart Arduino ### Using PlatformIO [PlatformIO](http://platformio.org) is an open source ecosystem for IoT development with cross platform build system, library manager and full support for Espressif (ESP8266) development. It works on the popular host OS: macOS, Windows, Linux 32/***, Linux ARM (like Raspberry Pi, BeagleBone, CubieBoard). - [What is PlatformIO?](http://docs.platformio.org/page/what-is-platformio.html) - [PlatformIO IDE](http://platformio.org/platformio-ide) - 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) - [Advanced usage](http://docs.platformio.org/page/platforms/espressif.html) - custom settings, uploading to SPIFFS, Over-the-Air (OTA) or using stage version - [Integration with Cloud and Standalone IDEs](http://docs.platformio.org/page/ide.html) - Cloud9, Codeanywhere, Eclipse Che (Codenvy), Atom, CLion, Eclipse, Emacs, NetBeans, Qt Creator, Sublime Text, VIM and Visual Studio - [Project Examples](http://docs.platformio.org/page/platforms/espressif.html#examples) ### Building with make [makeEspArduino](https://github.com/plerup/makeEspArduino) is a generic makefile for any ESP8266 Arduino project. Using make instead of the Arduino IDE makes it easier to do automated and production builds. ### Documentation Documentation for latest development version: https://arduino-esp8266.readthedocs.io/en/latest/ ### Issues and support ### [ESP8266 Community Forum](http://www.esp8266.com/u/arduinoanswers) is a well established community for questions and answers about Arduino for ESP8266. If you find this forum useful, please consider supporting it with a donation.
[![Donate](https://img.shields.io/badge/paypal-donate-yellow.svg)](https://www.paypal.com/webscr?cmd=_s-xclick&hosted_button_id=4M56YCWV6PX66) 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. Please provide as much context as possible: - ESP8266 Arduino core version which you are using (you can check it in Boards Manager) - 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) - when encountering an issue which happens at run time, attach serial output. Wrap it into a code block, just like the code. - for issues which happen at compile time, enable verbose compiler output in the IDE preferences, and attach that output (also inside a code block) - ESP8266 development board model - IDE settings (board choich, flash size) ### Contributing For minor fixes of code and documentation, please go ahead and submit a pull request. 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. 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. 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. ### License and credits ### Arduino IDE is developed and maintained by the Arduino team. The IDE is licensed under GPL. ESP8266 core includes an xtensa gcc toolchain, which is also under GPL. Esptool written by Christian Klippel is licensed under GPLv2, currently maintained by Ivan Grokhotkov: https://github.com/igrr/esptool-ck. Espressif SDK included in this build is under Espressif MIT License. ESP8266 core files are licensed under LGPL. [SPI Flash File System (SPIFFS)](https://github.com/pellepl/spiffs) written by Peter Andersson is used in this project. It is distributed under MIT license. [umm_malloc](https://github.com/rhempel/umm_malloc) memory management library written by Ralph Hempel is used in this project. It is distributed under MIT license. [axTLS](http://axtls.sourceforge.net/) library written by Cameron Rich, built from https://github.com/igrr/axtls-8266, is used in this project. It is distributed under [BSD license](https://github.com/igrr/axtls-8266/blob/master/LICENSE).

近期下载者

相关文件


收藏者