Skip to content

Commit f869a86

Browse files
authored
Merge pull request #6581 from FoamyGuy/docs_links_foamyguy_0
adding links in docs
2 parents 9d5b04e + e92ac0c commit f869a86

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

shared-bindings/keypad/__init__.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ const mp_obj_property_t keypad_generic_events_obj = {
8686
//| connected independently to individual pins,
8787
//| connected to a shift register,
8888
//| or connected in a row-and-column matrix.
89+
//|
90+
//| For more information about working with the `keypad` module in CircuitPython,
91+
//| see `this Learn guide <https://learn.adafruit.com/key-pad-matrix-scanning-in-circuitpython>`_.
8992
//| """
9093
//|
9194

shared-bindings/msgpack/__init__.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
//|
4242
//| Not implemented: 64-bit int, uint, float.
4343
//|
44+
//| For more information about working with msgpack,
45+
//| see `the CPython Library Documentation <https://msgpack-python.readthedocs.io/en/latest/?badge=latest>`_.
46+
//|
4447
//| Example 1::
4548
//|
4649
//| import msgpack

shared-bindings/sharpdisplay/__init__.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,12 @@
3131

3232
#include "shared-bindings/sharpdisplay/SharpMemoryFramebuffer.h"
3333

34-
//| """Support for Sharp Memory Display framebuffers"""
34+
//| """Support for Sharp Memory Display framebuffers
35+
//|
36+
//| For more information about working with Sharp Memory Displays,
37+
//| see `this Learn guide <https://learn.adafruit.com/adafruit-sharp-memory-display-breakout/circuitpython-displayio-setup>`_.
38+
//| """
3539
//|
36-
3740
STATIC const mp_rom_map_elem_t sharpdisplay_module_globals_table[] = {
3841
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_sharpdisplay) },
3942
{ MP_ROM_QSTR(MP_QSTR_SharpMemoryFramebuffer), MP_ROM_PTR(&sharpdisplay_framebuffer_type) },

shared-bindings/touchio/__init__.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@
4545
//| call :py:meth:`!deinit` or use a context manager. See
4646
//| :ref:`lifetime-and-contextmanagers` for more info.
4747
//|
48-
//| For example::
48+
//| For more information about working with the `touchio` module in CircuitPython,
49+
//| see `this Learn guide page <https://learn.adafruit.com/circuitpython-essentials/circuitpython-cap-touch>`_.
50+
//|
51+
//| Example::
4952
//|
5053
//| import touchio
5154
//| from board import *

0 commit comments

Comments
 (0)