Remove join timeout from example

This commit is contained in:
Sebastian Romero 2021-01-28 18:17:23 +01:00 committed by GitHub
parent 67f5e34119
commit 0bbf612d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ appEui = "1234567890123456"
appKey = "12345678901234567890123456789012"
try:
lora.join_OTAA(appEui, appKey, timeout=20000)
lora.join_OTAA(appEui, appKey)
# Or ABP:
#lora.join_ABP(devAddr, nwkSKey, appSKey, timeout=5000)
# You can catch individual errors like timeout, rx etc...