Skip to content

Commit 5ef19e9

Browse files
committed
Merge pull request #774 from pgollor/doc_modify
add table of contents at top of reference.md file
2 parents e62d5a9 + 8d43cba commit 5ef19e9

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

doc/reference.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
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+
* [exists](#exists)
21+
* [openDir](#opendir)
22+
* [remove](#remove)
23+
* [rename](#rename)
24+
* [Directory object (Dir)](#directory-object-dir)
25+
* [File object](#file-object)
26+
* [seek](#seek)
27+
* [position](#position)
28+
* [size](#size)
29+
* [name](#name)
30+
* [close](#close)
31+
* [WiFi(ESP8266WiFi library)](#wifiesp8266wifi-library)
32+
* [Ticker](#ticker)
33+
* [EEPROM](#eeprom)
34+
* [I2C (Wire library)](#i2c-wire-library)
35+
* [SPI](#spi)
36+
* [ESP-specific APIs](#esp-specific-apis)
37+
* [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)
38+
* [mDNS and DNS-SD responder (ESP8266mDNS library)](#mdns-and-dns-sd-responder-esp8266mdns-library)
39+
* [SSDP responder (ESP8266SSDP)](#ssdp-responder-esp8266ssdp)
40+
* [DNS server (DNSServer library)](#dns-server-dnsserver-library)
41+
* [Servo](#servo)
42+
* [Other libraries (not included with the IDE)](#other-libraries-not-included-with-the-ide)
43+
44+
Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
45+
546
## Digital IO
647

748
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)