Ruben Andreassen

Results 12 comments of Ruben Andreassen

You can set `cache_control` and `cache_expires` on a global level or for each resource.

I abandoned this and are using credentials. ``` client_credentials = ClientCredential(client_id, client_secret) ctx = ClientContext(sharepoint_site).with_credentials(client_credentials) ```

Something like this: ``` #include #include const int FW_VERSION = 1011; const char* mqtt_topic_fw_info = "esp/test/info"; void checkForUpdates(String fwImageURL) { HTTPClient httpClient; String newFWVersion = httpClient.getString(); mqtt.publish(mqtt_topic_fw_info, ((String)"Current firmware version").c_str());...

I have a much simpler board design (only ~10 parts). I can update my repo with the Fritzing files tonight if I remember.

I have only been experimenting with FOTA a little while, but my preferred method is something like `mosquitto_pub -t 'my/topic/update' -m 'http://my.local.webserver/firmware.bin'` This way the ESP only need to subscribe...

@NilashishC Yes, that is correct, see the output below. You know the collection best, but I (and probably others) would be happy with a more robust solution of my fix,...

It seems like the `armState:statusType` don't change but there is another attribute `alarms` that is added when the alarm is triggered. Don't know if `alarms` is an attribute of `armState`...

I have just made a successful deployment on our Kubernetes cluster using GitLab CI, so thanks for the great work :) I'm going to do the upgrade now so if...

Got the same on `cisco.ios.ios` and `cisco.nxos.nxos`. Had to change container image from `registry.gitlab.com/pipeline-components/ansible-lint:latest` to `registry.gitlab.com/pipeline-components/ansible-lint:0.68.0` in my GitLab pipeline. ``` fqcn[canonical]: You should use canonical module name `cisco.ios.ios` instead...