Chris

Results 56 comments of Chris

You subscrive for rpc requests with `esp_mqtt_client_subscribe(client, "v1/devices/me/rpc/request/+", 0);`. You can also subscribe shared attributes like this https://thingsboard.io/docs/reference/mqtt-api/#subscribe-to-attribute-updates-from-the-server `v1/devices/me/attributes` When you change shared attributes on the dashboard the server sends...

This is wrong, remove it from your source. `esp_mqtt_client_subscribe(client, "v1/devices/me/attributes/+", 0); // For shared attributes` and this is for shared attributes `esp_mqtt_client_subscribe(client, "v1/devices/me/attributes", 0); // For client-side attributes` Try it...

You found this? https://thingsboard.io/docs/user-guide/integrations/chirpstack/

Is the filter in use and you filter on "Active" alarms?

Hi @mykhailokornieiev, I implmented now a custom action: ``` let $injector = widgetContext.$scope.$injector; $injector.get(widgetContext.servicesMap.get( 'attributeService')).saveEntityAttributes(entityId, 'SERVER_SCOPE', [{ key: "MachinePicture", value: "" }]).subscribe(( res) => { //console.log(res); }); ```How can I...

As a quick workaround I placed a `location.reload();`. Not nice but works. :)