shelly-script-examples
shelly-script-examples copied to clipboard
ble-shelly-dw.js crashes at irregular intervals
Describe the bug The script terminates after a certain time.
The problem is due to a faulty test for “undefind” with “let _bth”
current code:
if (_bth === "undefined")
corrected code:
if (typeof _bth === "undefined")
Please correct the script in the repository.