Skip to content

Commit 54bf2d0

Browse files
committed
add table of contents
1 parent a49dd45 commit 54bf2d0

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

doc/reference.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22
title: Reference
33
---
44

5+
# Table of Contents
6+
7+
* [title: Reference](#title-reference)
8+
* [Digital IO](#digital-io)
9+
* [Analog input](#analog-input)
10+
* [Analog output](#analog-output)
11+
* [Timing and delays](#timing-and-delays)
12+
* [Serial](#serial)
13+
* [Progmem](#progmem)
14+
* [File system](#file-system)
15+
* [Uploading files to file system](#uploading-files-to-file-system)
16+
* [File system object (SPIFFS)](#file-system-object-spiffs)
17+
* [begin](#begin)
18+
* [format](#format)
19+
* [open](#open)
20+
* [openDir](#opendir)
21+
* [remove](#remove)
22+
* [rename](#rename)
23+
* [Directory object (Dir)](#directory-object-dir)
24+
* [File object](#file-object)
25+
* [seek](#seek)
26+
* [position](#position)
27+
* [size](#size)
28+
* [name](#name)
29+
* [close](#close)
30+
* [WiFi(ESP8266WiFi library)](#wifiesp8266wifi-library)
31+
* [Ticker](#ticker)
32+
* [EEPROM](#eeprom)
33+
* [I2C (Wire library)](#i2c-wire-library)
34+
* [SPI](#spi)
35+
* [ESP-specific APIs](#esp-specific-apis)
36+
* [OneWire (from <a href="https://www.pjrc.com/teensy/td_libs_OneWire.html">https://www.pjrc.com/teensy/td_libs_OneWire.html</a>)](#onewire-from-httpswwwpjrccomteensytd_libs_onewirehtml)
37+
* [mDNS and DNS-SD responder (ESP8266mDNS library)](#mdns-and-dns-sd-responder-esp8266mdns-library)
38+
* [SSDP responder (ESP8266SSDP)](#ssdp-responder-esp8266ssdp)
39+
* [DNS server (DNSServer library)](#dns-server-dnsserver-library)
40+
* [Servo](#servo)
41+
* [Other libraries (not included with the IDE)](#other-libraries-not-included-with-the-ide)
42+
43+
Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
44+
545
## Digital IO
646

747
Pin numbers in Arduino correspond directly to the ESP8266 GPIO pin numbers. `pinMode`, `digitalRead`, and `digitalWrite` functions work as usual, so to read GPIO2, call `digitalRead(2)`.

0 commit comments

Comments
 (0)