Skip to content

Commit

Permalink
MOD : Increase arduino wait default value (Should fix issue #8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilon123456789 authored Sep 12, 2023
1 parent 2e27177 commit 2002332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmetix/firmetix.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Firmetix(threading.Thread):

# noinspection PyPep8,PyPep8,PyPep8
def __init__(self, com_port=None, arduino_instance_id=1, connection_type=0,
arduino_wait=1, sleep_tune=0.000001,
arduino_wait=5, sleep_tune=0.000001,
shutdown_on_exception=True,
ip_address=None, ip_port=31335, baudrate=115200,
send_delay=0.01, ble_mac_address=None, ble_name=None):
Expand Down Expand Up @@ -2930,4 +2930,4 @@ def _ble_receiver(self, data):
Called when data is received from the BLE device.
"""
for d in data:
self.the_deque.append(d)
self.the_deque.append(d)

0 comments on commit 2002332

Please sign in to comment.