Skip to content

Commit 5ea7eba

Browse files
Update
Testing tool to fix some small spelling/gramar stuff
1 parent cfea8c7 commit 5ea7eba

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pip install sparkfun-qwiic-relay
6969
```
7070

7171
### Local Installation
72-
To install, make sure the setuptools package is installed on the system.
72+
To install, make sure the `setuptools` package is installed on the system.
7373

7474
Direct installation at the command line:
7575
```sh

examples/qwiic_relay_ex1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#
88
# Written by SparkFun Electronics, July 2020
99
#
10-
# This python library supports the SparkFun Electroncis qwiic
11-
# qwiic sensor/board ecosystem on a Raspberry Pi (and compatable) single
10+
# This python library supports the SparkFun Electronics qwiic
11+
# qwiic sensor/board ecosystem on a Raspberry Pi (and compatible) single
1212
# board computers.
1313
#
1414
# More information on qwiic is at https://www.sparkfun.com/qwiic

examples/qwiic_relay_ex2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#
88
# Written by SparkFun Electronics, April 2020
99
#
10-
# This python library supports the SparkFun Electroncis qwiic
11-
# qwiic sensor/board ecosystem on a Raspberry Pi (and compatable) single
10+
# This python library supports the SparkFun Electronics qwiic
11+
# qwiic sensor/board ecosystem on a Raspberry Pi (and compatible) single
1212
# board computers.
1313
#
1414
# More information on qwiic is at https://www.sparkfun.com/qwiic

qwiic_relay.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
# Written by SparkFun Electronics, July 2019
1111
#
12-
# This python library supports the SparkFun Electroncis qwiic
12+
# This python library supports the SparkFun Electronics qwiic
1313
# qwiic sensor/board ecosystem
1414
#
1515
# More information on qwiic is at https:// www.sparkfun.com/qwiic
@@ -37,7 +37,7 @@
3737
# SOFTWARE.
3838
#==================================================================================
3939
#
40-
# This is mostly a port of existing Arduino functionaly, so pylint is sad.
40+
# This is mostly a port of existing Arduino functionality, so pylint is sad.
4141
# The goal is to keep the public interface pthonic, but internal is internal
4242
#
4343
# pylint: disable=line-too-long, bad-whitespace, invalid-name
@@ -59,10 +59,10 @@
5959

6060
import qwiic_i2c
6161

62-
# Define the device name and I2C addresses. These are set in the class defintion
63-
# as class variables, making them avilable without having to create a class instance.
64-
# This allows higher level logic to rapidly create a index of qwiic devices at
65-
# runtine
62+
# Define the device name and I2C addresses. These are set in the class definition
63+
# as class variables, making them available without having to create a class instance.
64+
# This allows higher level logic to rapidly create an index of qwiic devices at
65+
# runtime
6666
#
6767
# The name of this device
6868
_DEFAULT_NAME = "SparkFun Qwiic Relay"
@@ -155,7 +155,7 @@ def __init__(self, address=None, i2c_driver=None):
155155

156156
def is_connected(self):
157157
"""
158-
Determine if the Qwiic Relay is connected to the system..
158+
Determine if the Qwiic Relay is connected to the system.
159159
160160
:return: True if the device is connected, otherwise False.
161161
:rtype: bool
@@ -174,7 +174,7 @@ def begin(self):
174174
"""
175175
Initialize the operation of the relay
176176
177-
:return: Returns true of the initializtion was successful, otherwise False.
177+
:return: Returns true of the initialization was successful, otherwise False.
178178
:rtype: bool
179179
180180
"""

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# Written by SparkFun Electronics, May 2019
66
#
7-
# This python library supports the SparkFun Electroncis qwiic
8-
# ecosystem, providing an plaform indepenant interface to the
7+
# This python library supports the SparkFun Electronics qwiic
8+
# ecosystem, providing a platform independent interface to the
99
# I2C bus.
1010
#
1111
# More information on qwiic is at https://www.sparkfun.com/qwiic

0 commit comments

Comments
 (0)