This page (revision-22) was last changed on 2022-04-19 01:44 by Murray Altheim

This page was created on 2019-12-21 22:01 by unknown

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
22 2022-04-19 01:44 6 KB Murray Altheim to previous
21 2021-11-29 10:49 6 KB Murray Altheim to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 removed 2 lines
!!! Python
At line 3 added 24 lines
See also: [CircuitPython] and [MicroPython] and [Upgrading Python|UpgradingPython]
!! A Python Library Devoted to Robotics
This is a Python code collection of robotics algorithms.
Features:
# Easy to read for understanding each algorithm's basic idea.
# Widely used and practical algorithms are selected.
# Minimum dependency.
See: __[Python Robotics|https://github.com/AtsushiSakai/PythonRobotics]__ by Atsushi Sakai
!! How to Have Pip3 Install a Module to a Specific Python Version
'nuff said (in the title):
{{{
python3.8 -m pip install foo
}}}
At line 7 changed one line
* __[gpiozero|https://gpiozero.readthedocs.io/en/v1.1.0/index.html#]__, a simple interface to everyday GPIO components used with Raspberry Pi. Installed on Raspbian by default; to install on other OS use: {{{pip3 install gpiozero}}}
* __[gpiozero|https://gpiozero.readthedocs.io/en/v1.1.0/index.html#]__, a simple interface to everyday GPIO components used with Raspberry Pi. Installed on Raspbian by default; to install on other OS use:  {{{pip3 install gpiozero}}}
At line 34 added one line
* Support for various Pimoroni Breakout Garden boards as [MicroPython modules|https://github.com/pimoroni/pimoroni-pico/tree/main/micropython/modules]
At line 36 added one line
At line 45 added one line
* [PyRobot|https://pyrobot.org/], an Open Source Robotics Research Platform
At line 28 changed one line
* [asyncio implementation on MicroPython|https://docs.micropython.org/en/latest/library/uasyncio.html] (uasyncio)
* [Module Support Matrix - Which Modules Are Available on Which Boards|https://circuitpython.readthedocs.io/en/latest/shared-bindings/support_matrix.html?filter=i2cperipheral] (by customising the URL you can change the highlighting)
* [Pybotics|https://pypi.org/project/pybotics/], The Python Toolbox for Robotics
* [Robot Framework|https://robotframework.org/], a generic open source automation framework.
It can be used for test automation and robotic process automation (RPA).
* [Python 101: Redirecting stdout|https://www.blog.pythonlibrary.org/2016/06/16/python-101-redirecting-stdout/]