Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYsLab committed Aug 3, 2023
0 parents commit 6d077a0
Show file tree
Hide file tree
Showing 113 changed files with 20,009 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html linguist-language=Python
137 changes: 137 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
# Created by .ignore support plugin (hsz.mobi)
### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
.idea/
docs/images
build/
.idea/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
html/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

!/html/
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## telemetrix-uno-r4

# Telemetrix For The Arduino UNO R4 Minima and WIFI


This Python package allows you to monitor and control an UNO R4 Minima or
WIFI board by simply writing a Python script using one of the telemetrix--uno-r4 APIs.
APIs are provided for both synchronous and asyncio implementations.

| Feature | Minima | WIFI | Notes |
|------------------------------------|:------:|:----:|:-------------------------------:|
| Analog Input | X | X | |
| Analog Output (PWM) | X | X | |
| Digital Input | X | X | |
| Digital Output | X | X | |
| i2c Primitives | X | X | |
| Servo Motor Control | X | X | Currently, BLE is not supported |
| DHT Temperature/Humidity Sensor | X | X | |
| HC-SR04 Sonar Distance Sensor | X | X | |
| SPI Primitives | X | X | |
| Scrolling Message Support | | X | |
| Integrated Debugging Aids Provided | X | X | |
| Examples ProvidedFor All Features | X | X | |

For the Minima, communication with the Python client is supported by a USBSerial
transport.

You may choose a WIFI, USBSerial or BLE transport for the WIFI board.
Please refer to the [User's Guide]() for further information, including installation
instructions and client APIs.

Loading

0 comments on commit 6d077a0

Please sign in to comment.