From 1100fa30974421a8059f6188212dac6b79b9d36b Mon Sep 17 00:00:00 2001 From: Ouweshs28 Date: Fri, 22 Mar 2019 21:10:55 +0400 Subject: [PATCH 1/3] Updated Instructions for better Usage --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07095ab..2f13ee1 100644 --- a/README.md +++ b/README.md @@ -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 From 92cd0c8d6f74149ec5e59dd03d1009d6312dbb00 Mon Sep 17 00:00:00 2001 From: Ouweshs28 Date: Fri, 22 Mar 2019 21:12:10 +0400 Subject: [PATCH 2/3] Changed winreg command to Python 3.7x --- Arduino/arduino.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Arduino/arduino.py b/Arduino/arduino.py index d43c26e..88b9da7 100755 --- a/Arduino/arduino.py +++ b/Arduino/arduino.py @@ -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 From ea0d6a8232c27059396c06afb6d003d0fa69e214 Mon Sep 17 00:00:00 2001 From: Ouweshs28 Date: Fri, 22 Mar 2019 21:20:35 +0400 Subject: [PATCH 3/3] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2f13ee1..575125a 100644 --- a/README.md +++ b/README.md @@ -39,14 +39,14 @@ while True: - Any [Arduino compatible microcontroller](https://www.sparkfun.com/categories/242) with at least 14KB of flash memory ## Installation: -I have used Python 3.7x -Install pyserial -Open ADMINISTATOR CMD -Go to your Python Path +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 +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