| Return code | Definition |
|---|---|
| 100 | Success |
| 101 | Unknown error |
| 102 | Version not supported |
| 103 | Illegal request |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Hashicorp At Home - A series of blog posts by Mockingbird Consulting | |
| # Read the original at https://www.mockingbirdconsulting.co.uk/blog/2019-01-05-hashicorp-at-home/ | |
| # | |
| # This code is licensed under the MIT License, and remains the copyright of Mockingbird Consulting Ltd. | |
| # This configuration will launch homeassistant.io and have it hosted at homeassistant.service.consul | |
| # (assuming the default domain of .consul has been retained from the original articles). | |
| # | |
| # Configuration for HomeAssistant will be saved to the host machine in /srv/home_assistant/config, | |
| # so if you have an existing HomeAssistant configuration you should be able to drop the files in to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| To move a panel to below the divider in Home Assistant | |
| Add this to your configuration.yaml | |
| frontend: | |
| extra_module_url: | |
| - /local/move-panel.js | |
| And put the following into <config-dir>/www/move-panel.js | |
| Replace URL_TO_MOVE with the url of your panel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /config/configuration.yaml | |
| ... | |
| lovelace: | |
| mode: yaml | |
| resources: | |
| - url: /local/myfont.css | |
| type: css | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Simplest possible custom card | |
| // Does nothing. Doesn't look like anything | |
| class MyCustomCard extends HTMLElement { | |
| setConfig(config) { | |
| // The config object contains the configuration specified by the user in ui-lovelace.yaml | |
| // for your card. | |
| // It will minimally contain: | |
| // config.type = "custom:my-custom-card" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: ph-260bd-relay | |
| platform: ESP32 | |
| board: esp32dev | |
| # Enable logging | |
| logger: | |
| logs: | |
| esp32_ble_tracker: INFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| views: | |
| - badges: [] | |
| cards: | |
| - cards: | |
| - cards: | |
| - entity: sensor.time | |
| style: | | |
| ha-card { | |
| color: yellow; | |
| #--paper-item-icon-color: green; |
My working sample to export to MQTTS topic using app-service-configurable insecure mode for EdgeX Foundry Geneva release
- EdgeX Foundry Geneva release.
- Using
docker-app-service-configurable:1.2.0in insecure mode (without Secret Store).- A bit of a special method to get around the bug.
- Export to MQTTS topic using client certificate authentication.
In this case, use test.mosquitto.org for testing purposes.
NewerOlder
