File tree Expand file tree Collapse file tree 5 files changed +19
-1
lines changed Expand file tree Collapse file tree 5 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 34
34
//| """AES encryption routines
35
35
//|
36
36
//| The `AES` module contains classes used to implement encryption
37
- //| and decryption. It aims to be low overhead in terms of memory."""
37
+ //| and decryption. It aims to be low overhead in terms of memory.
38
+ //|
39
+ //| For more information on AES, refer to `the Wikipedia entry
40
+ //| <https://en.wikipedia.org/wiki/Advanced_Encryption_Standard>`_.
41
+ //| """
38
42
39
43
40
44
STATIC const mp_obj_tuple_t mp_aes_key_size_obj = {
Original file line number Diff line number Diff line change 42
42
//| call :py:meth:`!deinit` or use a context manager. See
43
43
//| :ref:`lifetime-and-contextmanagers` for more info.
44
44
//|
45
+ //| For more information on working with this module, refer to the
46
+ //| `CircuitPython Essentials Learn Guide
47
+ //| <https://learn.adafruit.com/circuitpython-essentials/circuitpython-audio-out>`_.
48
+ //|
45
49
//| Since CircuitPython 5, `RawSample` and `WaveFile` are moved
46
50
//| to :mod:`audiocore`, and `Mixer` is moved to :mod:`audiomixer`.
47
51
//|
Original file line number Diff line number Diff line change 54
54
//| Other implementations of the CAN device may exist (for instance, attached
55
55
//| via an SPI bus). If so their constructor arguments may differ, but
56
56
//| otherwise we encourage implementors to follow the API that the core uses.
57
+ //|
58
+ //| For more information on working with this module, refer to
59
+ //| `this Learn Guide on using it <https://learn.adafruit.com/using-canio-circuitpython>`_.
57
60
//| """
58
61
//|
59
62
Original file line number Diff line number Diff line change 13
13
//|
14
14
//| The `countio` module contains logic to read and count edge transistions
15
15
//|
16
+ //| For more information on the applications of counting edges, see
17
+ //| `this Learn Guide on sequential circuits
18
+ //| <https://learn.adafruit.com/digital-circuits-4-sequential-circuits>`_.
19
+ //|
16
20
//| All classes change hardware state and should be deinitialized when they
17
21
//| are no longer needed if the program continues after use. To do so, either
18
22
//| call :py:meth:`!deinit` or use a context manager. See
Original file line number Diff line number Diff line change 39
39
//| `Wikipedia's Rotary Encoder page <https://en.wikipedia.org/wiki/Rotary_encoder>`_ for more
40
40
//| background.
41
41
//|
42
+ //| For more information on working with rotary encoders using this library, see
43
+ //| `this Learn Guide <https://learn.adafruit.com/rotary-encoder>`_.
44
+ //|
42
45
//| All classes change hardware state and should be deinitialized when they
43
46
//| are no longer needed if the program continues after use. To do so, either
44
47
//| call :py:meth:`!deinit` or use a context manager. See
You can’t perform that action at this time.
0 commit comments