Skip to content

Commit ba8af66

Browse files
committed
docs: fix warnings and toctrees
1 parent 853f519 commit ba8af66

23 files changed

+38
-141
lines changed

doc/esp8266wifi/client-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#client>`__
1+
:orphan:
22

33
Client Class
44
------------

doc/esp8266wifi/client-examples.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#client>`__
1+
:orphan:
22

33
Client
44
------
@@ -255,7 +255,6 @@ For more client examples please check
255255

256256
- `WiFiClientBasic.ino <https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino>`__ - a simple sketch that sends a message to a TCP server
257257

258-
- `WiFiClient.ino <https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient.ino>`__ - this sketch sends data via HTTP GET requests to data.sparkfun.com
259-
service.
258+
- `WiFiClient.ino <https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient.ino>`__ - this sketch sends data via HTTP GET requests to data.sparkfun.com service.
260259

261260
For the list of functions provided to manage clients, please refer to the `Client Class :arrow\_right: <client-class.md>`__ documentation.

doc/esp8266wifi/client-secure-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#client-secure>`__
1+
:orphan:
22

33
Client Secure Class
44
-------------------

doc/esp8266wifi/client-secure-examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#client-secure>`__
1+
:orphan:
22

33
Client Secure
44
-------------

doc/esp8266wifi/generic-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#generic>`__
1+
:orphan:
22

33
Generic Class
44
-------------

doc/esp8266wifi/generic-examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#generic>`__
1+
:orphan:
22

33
Generic
44
-------

doc/esp8266wifi/readme.rst

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
.. toctree::
2-
:hidden:
3-
4-
client-class
5-
client-examples
6-
client-secure-class
7-
client-secure-examples
8-
generic-class
9-
generic-examples
10-
scan-class
11-
scan-examples
12-
server-class
13-
server-examples
14-
soft-access-point-class
15-
soft-access-point-examples
16-
station-class
17-
station-examples
18-
udp-class
19-
udp-examples
20-
211
ESP8266WiFi library
222
===================
233

doc/esp8266wifi/scan-class.rst

+2-22
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,10 @@
1-
`ESP8266WiFi Library :back: <readme.md#scan>`__
1+
:orphan:
22

33
Scan Class
4-
----------
4+
~~~~~~~~~~
55

66
This class is represented in `Arduino WiFi library <https://www.arduino.cc/en/Reference/WiFi>`__ by `scanNetworks() <https://www.arduino.cc/en/Reference/WiFiScanNetworks>`__ function. Developers of esp8266 / Arduino core extend this functionality by additional methods and properties.
77

8-
Table of Contents
9-
-----------------
10-
11-
- `Scan for Networks <#scan-for-networks>`__
12-
13-
- `scanNetworks <#scannetworks>`__
14-
- `scanNetworksAsync <#scannetworksasync>`__
15-
- `scanComplete <#scancomplete>`__
16-
- `scanDelete <#scandelete>`__
17-
18-
- `Show Results <#show-results>`__
19-
20-
- `SSID <#ssid>`__
21-
- `encryptionType <#encryptiontype>`__
22-
- `BSSID <#bssid>`__
23-
- `BSSIDstr <#bssidstr>`__
24-
- `channel <#channel>`__
25-
- `isHidden <#ishidden>`__
26-
- `getNetworkInfo <#getnetworkinfo>`__
27-
288
Documentation of this class is divided into two parts. First covers functions to scan for available networks. Second describes what information is collected during scanning process and how to access it.
299

3010
Scan for Networks

doc/esp8266wifi/scan-examples.rst

+1-22
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,10 @@
1-
`ESP8266WiFi Library :back: <readme.md#scan>`__
1+
:orphan:
22

33
Scan
44
~~~~
55

66
To connect a mobile phone to a hot spot, you typically open Wi-Fi settings app, list available networks and then pick the hot spot you need. You can also list the networks with ESP8266 and here is how.
77

8-
Table of Contents
9-
-----------------
10-
11-
- `Simple Scan <#simple-scan>`__
12-
13-
- `Disconnect <#disconnect>`__
14-
- `Scan for Networks <#scan-for-networks>`__
15-
- `Complete Example <#complete-example>`__
16-
- `Example in Action <#example-in-action>`__
17-
18-
- `Async Scan <#async-scan>`__
19-
20-
- `No delay() <#no-delay>`__
21-
- `Setup <#setup>`__
22-
- `When to Start <#when-to-start>`__
23-
- `Check When Done <#check-when-done>`__
24-
- `Complete Example <#complete-example-1>`__
25-
- `Example in Action <#example-in-action-1>`__
26-
27-
- `Conclusion <#conclusion>`__
28-
298
Simple Scan
309
~~~~~~~~~~~
3110

doc/esp8266wifi/server-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#server>`__
1+
:orphan:
22

33
Server Class
44
------------

doc/esp8266wifi/server-examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#server>`__
1+
:orphan:
22

33
Server
44
------

doc/esp8266wifi/soft-access-point-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#soft-access-point>`__
1+
:orphan:
22

33
Soft Access Point Class
44
-----------------------

doc/esp8266wifi/soft-access-point-examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#soft-access-point>`__
1+
:orphan:
22

33
Soft Access Point
44
-----------------

doc/esp8266wifi/station-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#station>`__
1+
:orphan:
22

33
Station Class
44
-------------

doc/esp8266wifi/station-examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#station>`__
1+
:orphan:
22

33
Station
44
-------

doc/esp8266wifi/udp-class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#udp>`__
1+
:orphan:
22

33
UDP Class
44
---------

doc/esp8266wifi/udp-examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`ESP8266WiFi Library :back: <readme.md#udp>`__
1+
:orphan:
22

33
UDP
44
---

doc/faq/a01-espcomm_sync-failed.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`FAQ list :back: <readme.md>`__
1+
:orphan:
22

33
I am getting "espcomm\_sync failed" error when trying to upload my ESP. How to resolve this issue?
44
--------------------------------------------------------------------------------------------------

doc/faq/a02-my-esp-crashes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:orphan:
2+
13
My ESP crashes running some code. How to troubleshoot it?
24
---------------------------------------------------------
35

doc/faq/a03-library-does-not-work.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:orphan:
2+
13
This Arduino library doesn't work on ESP. How do I make it working?
24
-------------------------------------------------------------------
35

doc/faq/a04-board-generic-is-unknown.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:orphan:
2+
13
How to resolve "Board generic (platform esp8266, package esp8266) is unknown" error?
24
------------------------------------------------------------------------------------
35

doc/faq/readme.rst

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
.. toctree::
2-
:hidden:
3-
4-
a01-espcomm_sync-failed
5-
a02-my-esp-crashes
6-
a03-library-does-not-work
7-
a04-board-generic-is-unknown
8-
91
FAQ
102
===
113

0 commit comments

Comments
 (0)