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

docs: Fix a few typos #111

Open
wants to merge 1 commit 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 bbio/libraries/BBIOServer/bbio_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def start(self, *pages):
with open(path, 'w') as f:
f.write(str(page) % links)

# Start srver in a daemon thread:
# Start server in a daemon thread:
server_thread = threading.Thread(target=self._server.serve_forever)
server_thread.daemon = True
server_thread.start()
Expand Down
2 changes: 1 addition & 1 deletion examples/BBIOServer_mobile_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def print_entry(text):
print "Text entered: \n '%s'" % text

def setup():
# Set the LEDs we'll be ontrolling as outputs:
# Set the LEDs we'll be controlling as outputs:
pinMode(USR2, OUTPUT)
pinMode(USR3, OUTPUT)

Expand Down
2 changes: 1 addition & 1 deletion examples/BBIOServer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def print_entry(text):
print "Text entered: \n '%s'" % text

def setup():
# Set the LEDs we'll be ontrolling as outputs:
# Set the LEDs we'll be controlling as outputs:
pinMode(USR2, OUTPUT)
pinMode(USR3, OUTPUT)

Expand Down
2 changes: 1 addition & 1 deletion examples/EventIO_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ def loop():

run(setup, loop)
# As soon as ctrl-c is pressed the event loop process will be
# automatically termintated and the program wil exit happily.
# automatically terminated and the program wil exit happily.
2 changes: 1 addition & 1 deletion examples/knock.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
knock.py - Alexander Hiam - 3/21/2012
Adapted from the Ardiuno knock.pde example skecth for use
Adapted from the Ardiuno knock.pde example sketch for use
with PyBBIO - https://github.com/alexanderhiam/PyBBIO

Uses a Piezo element to detect knocks. If a knock is detected
Expand Down