@Michael_Fritzsche
Yea it should be able to write a BLL var’s value with Homeyscript as well.
http://HOMEY_IP_ADDRES/api/app/net.i-dev.betterlogic/VARIABLENAME/VALUE //Please ensure that the value matches the type, otherwise it will not be set.
Writing a value to an AVD field should be possible like this:
let dcApp = await Homey.apps.getApp({ id: 'nl.qluster-it.DeviceCapabilities' });
await dcApp.post({
path: 'setvalue',
body: {
device: 'c34dc5b4-3c30-48a9-8a4e-014aea93d00d',
field: 'measure_power',
value: 501,
},
});
Where did you find this comnand? Just curious…