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

added support for python 3.7 #31

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Arduino/arduino.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import time
from serial.tools import list_ports
if platform.system() == 'Windows':
import _winreg as winreg
import winreg as winreg
else:
import glob

Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,14 @@ while True:
- Any [Arduino compatible microcontroller](https://www.sparkfun.com/categories/242) with at least 14KB of flash memory

## Installation:
Either run `pip install arduino-python` from a command line, or run `python setup.py
build install` from the source directory to install this library.
I have used Python 3.7x.
Install pyserial.
Open ADMINISTATOR CMD.
Go to your Python Path.
EX cd C:\Program Files\Python37
Install pyserial.
pip install pyserial( Update if update is found).
pip install arduino-python.

## Setup:
1. Verify that your Arduino board communicates at the baud rate specified in the
Expand Down