nodemcu-firmware/mkdocs.yml

81 lines
2.5 KiB
YAML
Raw Permalink Normal View History

2015-12-04 23:12:28 +01:00
site_name: NodeMCU Documentation
site_description: Description of the NodeMCU documentation
2015-12-05 01:05:14 +01:00
repo_url: https://github.com/nodemcu/nodemcu-firmware/
2015-12-14 21:41:06 +01:00
2018-10-07 15:59:04 +02:00
theme:
name: "readthedocs"
hljs_languages:
- lua
strict: false
2015-12-17 17:33:43 +01:00
2015-12-05 01:05:14 +01:00
markdown_extensions:
#http://pythonhosted.org/Markdown/extensions/admonition.html
- admonition:
- toc:
permalink: True
2015-12-14 21:41:06 +01:00
2015-12-27 23:51:54 +01:00
#see http://mkdocs.readthedocs.org/en/latest/user-guide/styling-your-docs/#customising-a-theme
2015-12-27 23:49:11 +01:00
extra_css:
- css/extra.css
2015-12-27 23:51:54 +01:00
extra_javascript:
- js/extra.js
2015-12-27 23:49:11 +01:00
2015-12-04 23:12:28 +01:00
pages:
- Overview: 'index.md'
- Basics:
- Building the firmware: 'build.md'
- Flashing the firmware: 'flash.md'
- Uploading code: 'upload.md'
- JTAG debugging: 'debug.md'
- Support: 'support.md'
- Reference:
- NodeMCU Language Reference Manual: 'nodemcu-lrm.md'
- Programming in NodeMCU: 'nodemcu-pil.md'
- FAQs:
- Lua Developer FAQ: 'lua-developer-faq.md'
- Extension Developer FAQ: 'extn-developer-faq.md'
- Whitepapers:
- Lua 5.3 Support: 'lua53.md'
- Lua Flash Store (LFS): 'lfs.md'
- Filesystem on SD card: 'sdcard.md'
- C Modules:
- 'adc': 'modules/adc.md'
- 'bit': 'modules/bit.md'
- 'bthci': 'modules/bthci.md'
- 'can': 'modules/can.md'
- 'crypto': 'modules/crypto.md'
- 'dac': 'modules/dac.md'
- 'dht': 'modules/dht.md'
- 'encoder': 'modules/encoder.md'
- 'eth': 'modules/eth.md'
- 'file': 'modules/file.md'
- 'gpio': 'modules/gpio.md'
2021-09-16 05:54:55 +02:00
- 'heaptrace': 'modules/heaptrace.md'
- 'http': 'modules/http.md'
- 'httpd': 'modules/httpd.md'
- 'i2c': 'modules/i2c.md'
- 'i2s': 'modules/i2s.md'
- 'ledc': 'modules/ledc.md'
- 'mqtt': 'modules/mqtt.md'
- 'net': 'modules/net.md'
- 'node': 'modules/node.md'
- 'ota': 'modules/otaupgrade.md'
- 'ow (1-Wire)': 'modules/ow.md'
- 'pipe': 'modules/pipe.md'
- 'pulsecnt': 'modules/pulsecnt.md'
- 'qrcodegen': 'modules/qrcodegen.md'
- 'sdmmc': 'modules/sdmmc.md'
- 'sigma delta': 'modules/sigma-delta.md'
- 'sjson': 'modules/sjson.md'
- 'sodium': 'modules/sodium.md'
- 'spi': 'modules/spi.md'
- 'struct': 'modules/struct.md'
- 'time': 'modules/time.md'
- 'tmr': 'modules/tmr.md'
- 'touch': 'modules/touch.md'
- 'u8g2': 'modules/u8g2.md'
- 'uart': 'modules/uart.md'
- 'ucg': 'modules/ucg.md'
- 'wifi': 'modules/wifi.md'
- 'ws2812': 'modules/ws2812.md'