Skip to content

Commit 2b2a413

Browse files
committed
Move esp8266 platform from "arduino" into "esp8266com"
1 parent c72529b commit 2b2a413

File tree

143 files changed

+17
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+17
-9
lines changed

hardware/arduino/esp8266/boards.txt renamed to hardware/esp8266com/esp8266/boards.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ wifio.name=WIFIO
1919

2020
wifio.upload.tool=esptool
2121
wifio.upload.speed=115200
22-
wifio.upload.resetmethod=wifio2
22+
wifio.upload.resetmethod=wifio
2323
wifio.upload.maximum_size=524288
2424
wifio.upload.wait_for_upload_port=true
2525

2626
wifio.build.mcu=esp8266
2727
wifio.build.f_cpu=80000000L
2828
wifio.build.board=ESP8266_WIFIO
2929
wifio.build.core=esp8266
30-
# TODO: add board variant for WIFIO
3130
wifio.build.variant=wifio
3231

hardware/arduino/esp8266/libraries/ESP8266WebServer/examples/HelloServer/HelloServer.ino renamed to hardware/esp8266com/esp8266/libraries/ESP8266WebServer/examples/HelloServer/HelloServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const int led = 13;
1212

1313
void handle_root() {
1414
digitalWrite(led, 1);
15-
server.send(200, "text/plain", form);
15+
server.send(200, "text/plain", "hello from esp8266!");
1616
delay(100);
1717
digitalWrite(led, 0);
1818
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=ESP8266WebServer
2+
version=1.0
3+
author=Ivan Grokhotkov
4+
maintainer=Ivan Grokhtkov <[email protected]>
5+
sentence=Simple web server library
6+
paragraph=The library supports HTTP GET and POST requests, provides argument parsing, handles one client at a time.
7+
category=Communication
8+
url=
9+
architectures=esp8266
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=ESP8266WiFi
2-
version=1.2
3-
author=Arduino
4-
maintainer=Arduino <[email protected]>
5-
sentence=Enables network connection (local and Internet) using the Arduino WiFi shield. For all Arduino boards.
2+
version=1.0
3+
author=Ivan Grokhotkov
4+
maintainer=Ivan Grokhtkov <[email protected]>
5+
sentence=Enables network connection (local and Internet) using the ESP8266 built-in WiFi.
66
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.
77
category=Communication
8-
url=http://arduino.cc/en/Reference/WiFi
9-
architectures=*
8+
url=
9+
architectures=esp8266

0 commit comments

Comments
 (0)