Updated baud and added DHT section to readme

This commit is contained in:
Morten Kals
2019-04-20 22:46:38 -07:00
parent 2d49f8858b
commit fbfc079cff
6 changed files with 46 additions and 11 deletions

View File

@@ -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()