mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
Move esp8266 platform from "arduino" into "esp8266com"
This commit is contained in:
@ -12,7 +12,7 @@ const int led = 13;
|
||||
|
||||
void handle_root() {
|
||||
digitalWrite(led, 1);
|
||||
server.send(200, "text/plain", form);
|
||||
server.send(200, "text/plain", "hello from esp8266!");
|
||||
delay(100);
|
||||
digitalWrite(led, 0);
|
||||
}
|
||||
|
9
libraries/ESP8266WebServer/library.properties
Normal file
9
libraries/ESP8266WebServer/library.properties
Normal file
@ -0,0 +1,9 @@
|
||||
name=ESP8266WebServer
|
||||
version=1.0
|
||||
author=Ivan Grokhotkov
|
||||
maintainer=Ivan Grokhtkov <ivan@esp8266.com>
|
||||
sentence=Simple web server library
|
||||
paragraph=The library supports HTTP GET and POST requests, provides argument parsing, handles one client at a time.
|
||||
category=Communication
|
||||
url=
|
||||
architectures=esp8266
|
@ -1,9 +1,9 @@
|
||||
name=ESP8266WiFi
|
||||
version=1.2
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables network connection (local and Internet) using the Arduino WiFi shield. For all Arduino boards.
|
||||
version=1.0
|
||||
author=Ivan Grokhotkov
|
||||
maintainer=Ivan Grokhtkov <ivan@esp8266.com>
|
||||
sentence=Enables network connection (local and Internet) using the ESP8266 built-in WiFi.
|
||||
paragraph=With this library you can instantiate Servers, Clients and send/receive UDP packets through WiFi. The shield can connect either to open or encrypted networks (WEP, WPA). The IP address can be assigned statically or through a DHCP. The library can also manage DNS.
|
||||
category=Communication
|
||||
url=http://arduino.cc/en/Reference/WiFi
|
||||
architectures=*
|
||||
url=
|
||||
architectures=esp8266
|
||||
|
Reference in New Issue
Block a user