File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ const mp_obj_property_t keypad_generic_events_obj = {
86
86
//| connected independently to individual pins,
87
87
//| connected to a shift register,
88
88
//| 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>`_.
89
92
//| """
90
93
//|
91
94
Original file line number Diff line number Diff line change 41
41
//|
42
42
//| Not implemented: 64-bit int, uint, float.
43
43
//|
44
+ //| For more information about working with msgpack,
45
+ //| see `the CPython Library Documentation <https://msgpack-python.readthedocs.io/en/latest/?badge=latest>`_.
46
+ //|
44
47
//| Example 1::
45
48
//|
46
49
//| import msgpack
Original file line number Diff line number Diff line change 31
31
32
32
#include "shared-bindings/sharpdisplay/SharpMemoryFramebuffer.h"
33
33
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
+ //| """
35
39
//|
36
-
37
40
STATIC const mp_rom_map_elem_t sharpdisplay_module_globals_table [] = {
38
41
{ MP_ROM_QSTR (MP_QSTR___name__ ), MP_ROM_QSTR (MP_QSTR_sharpdisplay ) },
39
42
{ MP_ROM_QSTR (MP_QSTR_SharpMemoryFramebuffer ), MP_ROM_PTR (& sharpdisplay_framebuffer_type ) },
Original file line number Diff line number Diff line change 45
45
//| call :py:meth:`!deinit` or use a context manager. See
46
46
//| :ref:`lifetime-and-contextmanagers` for more info.
47
47
//|
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::
49
52
//|
50
53
//| import touchio
51
54
//| from board import *
You can’t perform that action at this time.
0 commit comments