Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supports any serial protocol supported by the serial module #7

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
28c92e3
Add .gitignore
mrjohannchang Sep 17, 2018
56267ae
Init
mrjohannchang Sep 24, 2018
ccf9885
Fix performance issue
mrjohannchang Sep 24, 2018
53ac7b4
Bump to version 1.0.1
mrjohannchang Sep 24, 2018
70420e1
Update README
mrjohannchang Sep 28, 2018
019b58c
Add support to the original APIs in module serial
mrjohannchang Sep 29, 2018
e6e277c
Update README
mrjohannchang Sep 29, 2018
7bcfb63
Bump to 1.0.2
mrjohannchang Sep 29, 2018
6ba0da7
Bump to 1.0.3
mrjohannchang Sep 29, 2018
a2e370e
Update README
mrjohannchang Sep 29, 2018
5d8468c
Bump to 1.0.4
mrjohannchang Sep 29, 2018
12dcec0
Update README
mrjohannchang Sep 30, 2018
33364fb
Update README
mrjohannchang Sep 30, 2018
2d10eaa
Add read example to README
mrjohannchang Oct 1, 2018
92fcf87
Remove a redundant function call
mrjohannchang Oct 1, 2018
f23be39
Bump to 1.0.5
mrjohannchang Oct 1, 2018
501f3b1
Update README
mrjohannchang Oct 1, 2018
0256a96
Bump to 1.0.6
mrjohannchang Oct 1, 2018
e2b943f
Update README
mrjohannchang Oct 1, 2018
4ae71e7
Bump to 1.0.7
mrjohannchang Oct 1, 2018
9213410
Switch to Apache License Version 2.0
mrjohannchang Oct 6, 2018
74f7ad5
Bump to 1.0.8
mrjohannchang Oct 6, 2018
cdbbf36
Switch to Mozilla Public License 2.0 (MPL-2.0)
mrjohannchang Oct 8, 2018
3c248d8
Bump to 1.0.9
mrjohannchang Oct 8, 2018
5bf3e2c
Fix license annotations
mrjohannchang Oct 8, 2018
582101c
Bump to 1.0.10
mrjohannchang Oct 8, 2018
71e31da
Update README
mrjohannchang Oct 24, 2018
6574c03
Now can be used with python >= 3.6
Oct 31, 2018
0f04b4e
Merge pull request #1 from Governa/master
mrjohannchang Nov 11, 2018
0bdb143
Refine the support of Python 3.6
mrjohannchang Nov 13, 2018
6c04653
Bump to 1.1.0
mrjohannchang Nov 13, 2018
8656281
Update README
mrjohannchang Nov 13, 2018
ee2fc0e
Bump to 1.1.1
mrjohannchang Nov 13, 2018
858b6c4
Fix using get_running_loop method in 3.6 issue
mrjohannchang Feb 19, 2019
d9b7a46
Bump to 1.1.2
mrjohannchang Feb 19, 2019
b12d718
Add ToC to README
mrjohannchang Apr 2, 2019
5efb9df
Fix typo in loop assignment
mrjohannchang Apr 25, 2019
0baf027
Bump to 1.1.3
mrjohannchang Apr 25, 2019
73e7b59
Integrate with serial.serial_for_url("aioserial://<dev>", ...)
Jul 18, 2019
8af48d7
Supports any serial protocol supported by the serial module
Jul 19, 2019
1890f88
Shutdown executors on close
Jul 19, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 130 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
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
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

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

# 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

# celery beat schedule file
celerybeat-schedule

# 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

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
14 changes: 14 additions & 0 deletions .idea/aioserial.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading