Skip to content

Commit

Permalink
Bump to v1.0 and include link to Python example
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim H. Reenberg committed Mar 4, 2024
1 parent b4c3285 commit 4465491
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "SPIKE™ Prime protocol"
copyright = "2024, LEGO® Education"
author = "LEGO® Education"
release = "0.1"
release = "1.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand All @@ -23,6 +23,7 @@

extensions = [
"sphinx.ext.autosectionlabel",
"sphinx.ext.extlinks",
"sphinx.ext.githubpages",
"sphinx_rtd_theme",
"role_enum",
Expand All @@ -32,6 +33,13 @@
templates_path = ["_templates"]
exclude_patterns = []

extlinks = {
"repo": (
"https://github.com/LEGO/spike-prime-docs/tree/main/%s",
"https://github.com/LEGO/spike-prime-docs/%s",
),
}

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

Expand Down
5 changes: 5 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ LEGO® Education SPIKE™ App 3 Prime hubs.
It is intended for developers who want to write their own software
to control the SPIKE™ Prime Hub over Bluetooth Low Energy (BLE).

Some sections include example implementations for reference,
written in Python.
The full source code is available in the repository at
:repo:`examples/python`.

.. toctree::
:caption: Topics
:maxdepth: 1
Expand Down

0 comments on commit 4465491

Please sign in to comment.