Closed
Description
Why is there long delay (around 12 seconds) when Alvik.begin() called? Looking at the code it seems doing version compatibility check only. I used the code below.
import time
from arduino_alvik import ArduinoAlvik
start_time = time.time()
alvik = ArduinoAlvik()
alvik.begin()
end_time = time.time()
print(f'\nTotal time: {end_time - start_time}s')
print(f'\nlib_version: {alvik.get_lib_version()} fw_version: {alvik.get_fw_version()}')
Output:
Total time: 12s
lib_version: 1.1.0 fw_version: 1.1.0