23.05.2024, 13:25
@Andrea Becagli, you can create new devices via a script like this:
Check the existing devices for configuration table format. And always make a backup beforehand
To delete a device use this:
Code:
require('json')
id = storage.exec('incr', 'app:homekit:id') -- generate new id
conf = json.encode({ ... })
storage.exec('hset', 'app:homekit:devices', id, conf)
Check the existing devices for configuration table format. And always make a backup beforehand

To delete a device use this:
Code:
id = 123
storage.exec('hdel', 'app:homekit:devices', id)