Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.
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