mirror of
https://github.com/thearn/Python-Arduino-Command-API.git
synced 2026-04-24 03:00:20 -04:00
Updated baud and added DHT section to readme
This commit is contained in:
@@ -31,7 +31,7 @@ class TestBasics(unittest.TestCase):
|
||||
board = None
|
||||
try:
|
||||
# This will trigger automatic port resolution.
|
||||
board = Arduino(9600)
|
||||
board = Arduino(115200)
|
||||
finally:
|
||||
if board:
|
||||
board.close()
|
||||
@@ -48,7 +48,7 @@ class TestBasics(unittest.TestCase):
|
||||
from Arduino import Arduino
|
||||
board = None
|
||||
try:
|
||||
board = Arduino(9600, port=port)
|
||||
board = Arduino(115200, port=port)
|
||||
finally:
|
||||
if board:
|
||||
board.close()
|
||||
|
||||
Reference in New Issue
Block a user