summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/common_hal.md2
-rw-r--r--docs/drivers.rst15
2 files changed, 13 insertions, 4 deletions
diff --git a/docs/common_hal.md b/docs/common_hal.md
index 22093c3ba..ee2105ba1 100644
--- a/docs/common_hal.md
+++ b/docs/common_hal.md
@@ -1,4 +1,4 @@
-# Adding `digitalio` support to other ports
+# Adding ``*io`` support to other ports
`digitalio` provides a well-defined, cross-port hardware abstraction layer built to support different devices and their drivers. It's backed by the Common HAL, a C api suitable for supporting different hardware in a similar manner. By sharing this C api, developers can support new hardware easily and cross-port functionality to the new hardware.
These instructions also apply to `analogio`, `busio`, `pulseio` and `touchio`. Most drivers depend on `analogio`, `digitalio` and `busio` so start with those.
diff --git a/docs/drivers.rst b/docs/drivers.rst
index 191f6f8c3..ccd154a51 100644
--- a/docs/drivers.rst
+++ b/docs/drivers.rst
@@ -1,8 +1,9 @@
-Adafruit CircuitPython drivers
+Additional Libraries on GitHub
========================================
-These are drivers available in separate GitHub repos. They are designed for use
-with CircuitPython and may or may not work with `MicroPython <https://micropython.org>`_.
+These are libraries and drivers available in separate GitHub repos. They are
+designed for use with CircuitPython and may or may not work with
+`MicroPython <https://micropython.org>`_.
.. _bundle_installation:
@@ -34,6 +35,14 @@ the ``lib/`` directory. Some drivers may not work without them.
Register Library <https://circuitpython.readthedocs.io/projects/register/en/latest/>
BusDevice Library <https://circuitpython.readthedocs.io/projects/bus_device/en/latest/>
+Helper Libraries
+-------
+
+These libraries build on top of the low level APIS to simplify common tasks.
+
+.. toctree::
+ USB Human Interface Device (Keyboard and Mouse) <https://circuitpython.readthedocs.io/projects/hid/en/latest/>
+
Drivers
-------