From 54bf2d060b0ba8fba78d1a48b3b034b493408a82 Mon Sep 17 00:00:00 2001 From: Pascal Gollor Date: Sat, 12 Sep 2015 17:27:40 +0200 Subject: [PATCH 1/2] add table of contents --- doc/reference.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/doc/reference.md b/doc/reference.md index 94a303625..5dbd0b9c1 100644 --- a/doc/reference.md +++ b/doc/reference.md @@ -2,6 +2,46 @@ title: Reference --- +# Table of Contents + + * [title: Reference](#title-reference) + * [Digital IO](#digital-io) + * [Analog input](#analog-input) + * [Analog output](#analog-output) + * [Timing and delays](#timing-and-delays) + * [Serial](#serial) + * [Progmem](#progmem) + * [File system](#file-system) + * [Uploading files to file system](#uploading-files-to-file-system) + * [File system object (SPIFFS)](#file-system-object-spiffs) + * [begin](#begin) + * [format](#format) + * [open](#open) + * [openDir](#opendir) + * [remove](#remove) + * [rename](#rename) + * [Directory object (Dir)](#directory-object-dir) + * [File object](#file-object) + * [seek](#seek) + * [position](#position) + * [size](#size) + * [name](#name) + * [close](#close) + * [WiFi(ESP8266WiFi library)](#wifiesp8266wifi-library) + * [Ticker](#ticker) + * [EEPROM](#eeprom) + * [I2C (Wire library)](#i2c-wire-library) + * [SPI](#spi) + * [ESP-specific APIs](#esp-specific-apis) + * [OneWire (from https://www.pjrc.com/teensy/td_libs_OneWire.html)](#onewire-from-httpswwwpjrccomteensytd_libs_onewirehtml) + * [mDNS and DNS-SD responder (ESP8266mDNS library)](#mdns-and-dns-sd-responder-esp8266mdns-library) + * [SSDP responder (ESP8266SSDP)](#ssdp-responder-esp8266ssdp) + * [DNS server (DNSServer library)](#dns-server-dnsserver-library) + * [Servo](#servo) + * [Other libraries (not included with the IDE)](#other-libraries-not-included-with-the-ide) + +Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) + ## Digital IO 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)`. From 8d43cba727aad1d2fc81566c4eb102b7cfc31a38 Mon Sep 17 00:00:00 2001 From: Pascal Gollor Date: Mon, 14 Sep 2015 19:46:38 +0200 Subject: [PATCH 2/2] * update to head --- doc/reference.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/reference.md b/doc/reference.md index ec0b9038d..98f460131 100644 --- a/doc/reference.md +++ b/doc/reference.md @@ -17,6 +17,7 @@ title: Reference * [begin](#begin) * [format](#format) * [open](#open) + * [exists](#exists) * [openDir](#opendir) * [remove](#remove) * [rename](#rename)