Skip to content
This repository has been archived by the owner on Mar 28, 2020. It is now read-only.

Commit

Permalink
Assure 7 bit bytes for firmata
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterYsLab@gmail.com committed Feb 18, 2016
1 parent 4bf400b commit 6ad1ecc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PyMata/pymata.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def __init__(self, port_id='/dev/ttyACM0', bluetooth=True, verbose=True):

if self.verbose:
print("\nPython Version %s" % sys.version)
print('\nPyMata version 2.11 Copyright(C) 2013-15 Alan Yorinks All rights reserved.')
print('\nPyMata version 2.12 Copyright(C) 2013-16 Alan Yorinks All rights reserved.')

# Instantiate the serial support class
self.transport = PyMataSerial(port_id, self.command_deque)
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
setup(
name='PyMata',
packages=['PyMata'],
version='2.11',
version='2.12',
description="A Python Protocol Abstraction Library For Arduino Firmata",
author='Alan Yorinks',
author_email='MisterYsLab@gmail.com',
url='https://github.com/MrYsLab/PyMata',
download_url='https://github.com/MrYsLab/PyMata',
install_requires=['pyserial == 2.7'],
install_requires=['pyserial >= 2.7'],
keywords=['Firmata', 'Arduino', 'Protocol'],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -22,7 +22,7 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
'Topic :: Home Automation',
],
Expand Down

0 comments on commit 6ad1ecc

Please sign in to comment.