You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/design_guide.rst
+43-16Lines changed: 43 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,20 @@
1
1
Design Guide
2
2
============
3
3
4
-
This guide covers a variety of development practices for CircuitPython core and library APIs. Consistency with these practices ensures that beginners can learn a pattern once and apply it throughout the CircuitPython ecosystem.
4
+
This guide covers a variety of development practices for CircuitPython core and library APIs. These
5
+
APIs are both `built-into CircuitPython
6
+
<https://github.com/adafruit/circuitpython/tree/master/shared-bindings>`_ and those that are
7
+
`distributed on GitHub <https://github.com/search?utf8=%E2%9C%93&q=topic%3Acircuitpython&type=>`_
8
+
and in the `Adafruit <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_ and `Community
9
+
<https://github.com/adafruit/CircuitPython_Community_Bundle/>`_ bundles. Consistency with these
10
+
practices ensures that beginners can learn a pattern once and apply it throughout the CircuitPython
11
+
ecosystem.
5
12
6
13
Start libraries with the cookiecutter
7
14
-------------------------------------
8
15
9
-
Cookiecutter is a cool tool that lets you bootstrap a new repo based on another
10
-
repo. We've made one `here <https://github.com/adafruit/cookiecutter-adafruit-circuitpython>`_
16
+
Cookiecutter is a tool that lets you bootstrap a new repo based on another repo.
17
+
We've made one `here <https://github.com/adafruit/cookiecutter-adafruit-circuitpython>`_
11
18
for CircuitPython libraries that include configs for Travis CI and ReadTheDocs
12
19
along with a setup.py, license, code of conduct and readme.
13
20
@@ -18,6 +25,10 @@ along with a setup.py, license, code of conduct and readme.
0 commit comments