Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 9a649c0e authored by Mark Yoder's avatar Mark Yoder Committed by Robert Nelson
Browse files

Updated using qwiic in user space

parent 99c7d3d6
Branches
Tags
No related merge requests found
...@@ -346,7 +346,7 @@ some 6G bytes. ...@@ -346,7 +346,7 @@ some 6G bytes.
bone$ pip install -U sphinx_design bone$ pip install -U sphinx_design
bone$ pip install -U sphinxcontrib-images bone$ pip install -U sphinxcontrib-images
bone$ pip install -U sphinx-serve bone$ pip install -U sphinx-serve
These instructions came from `lorforlinux These instructions came from `lorforlinux
<https://beagleboard.slack.com/archives/C8S7EKZC2/p1684940872699269>`_ <https://beagleboard.slack.com/archives/C8S7EKZC2/p1684940872699269>`_
on the Beagleboard Slack channel. on the Beagleboard Slack channel.
...@@ -415,30 +415,36 @@ Here is a quick hack to get the Sparkfun Python examples to use ...@@ -415,30 +415,36 @@ Here is a quick hack to get the Sparkfun Python examples to use
bus 5. I'll show it for the Joystick, but it should work for the bus 5. I'll show it for the Joystick, but it should work for the
others as well. others as well.
Clone the Qwiic I2C repo: First, browse to Sparkfun's qwiic Joystick page,
https://www.sparkfun.com/products/15168 and click on the
**DOCUMENTS** tab and then on **Python Package**. Follow the pip
instillation instructions (sudo pip install sparkfun-qwiic-joystick)
.. code-block:: bash Next, uninstall the current qwiic |I2C| package.
.. code-block:: shell-session
bone$ sudo pip uninstall sparkfun-qwiic-i2c
Then clone the Qwiic |I2C| repo:
.. code-block:: shell-session
bone$ git clone git@github.com:sparkfun/Qwiic_I2C_Py.git bone$ git clone git@github.com:sparkfun/Qwiic_I2C_Py.git
bone$ cd Qwiic_I2C_Py/qwiic_i2c bone$ cd Qwiic_I2C_Py/qwiic_i2c
Edit **linux_i2c.py** and go to around line 62 and change it to: Edit **linux_i2c.py** and go to around line 62 and change it to:
.. code-block:: bash .. code-block:: shell-session
iBus = 5 iBus = 5
Next, cd up a level to the Qwiic_I2C_Py directory and install Next, cd up a level to the Qwiic_I2C_Py directory and reinstall
.. code-block:: bash .. code-block:: bash
bone$ cd .. bone$ cd ..
bone$ sudo python setup.py install bone$ sudo python setup.py install
Next, browse to Sparkfun's qwiic Joystick page,
https://www.sparkfun.com/products/15168 and click on the
**DOCUMENTS** tab and then on **Python Package**. Follow the pip
instillation instructions (sudo pip install sparkfun-qwiic-joystick)
Finally, run one of the Joystick examples. If it isn't using Finally, run one of the Joystick examples. If it isn't using
bus 5, try reinstalling setup.py again. bus 5, try reinstalling setup.py again.
.. tabs::
.. group-tab:: Commands
.. code-block:: shell-session
bone$ sudo apt update
bone$ sudo apt upgrade
bone$ sudo apt install -y \
make git wget \
doxygen graphviz librsvg2-bin\
texlive-latex-base texlive-latex-extra latexmk texlive-fonts-recommended \
python3 python3-pip \
python3-sphinx python3-sphinx-rtd-theme python3-sphinxcontrib.svg2pdfconverter \
python3-pil \
imagemagick-6.q16 librsvg2-bin webp \
texlive-full texlive-latex-extra texlive-fonts-extra \
fonts-freefont-otf fonts-dejavu fonts-dejavu-extra fonts-freefont-ttf
bone$ python3 -m pip install --upgrade pip
bone$ pip install -U sphinx_design
bone$ pip install -U sphinxcontrib-images
bone$ pip install -U sphinx-serve
.. group-tab:: Shell Output
.. code-block:: shell-session
bone$ git remote add upstream https://git.beagleboard.org/docs/docs.beagleboard.io.git
bone$ git fetch upstream
bone$ git pull upstream main
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment