shelly-script-examples icon indicating copy to clipboard operation
shelly-script-examples copied to clipboard

ble-shelly-dw.js crashes at irregular intervals

Open micha06de opened this issue 1 year ago • 0 comments

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.

micha06de avatar Nov 25 '24 09:11 micha06de