Marius Korte
Marius Korte
Hi, based on [this code](https://github.com/openhab/openhab-google-assistant/blob/6fc2ec5ec428faec6b42408c7042928e7d4244e4/functions/devices/default.js#L72) there should be no difference in the amount of synonyms. However, this is working when using "Terrassenrollo" ``` Rollershutter Shutter_Terrace_Level_GA "Rollo Terasse" (Group_GoogleAssistant) { ga="Shutter",...
Hi, I would like to control my oven via Google Assistant. The Google docs for oven type devices can be found [here](https://developers.google.com/assistant/smarthome/guides/oven). The oven I want to control is connected...
Hi, I have the following code ```javascript D3NodeHelper.prototype.generateDragConnection = function (connectionsGroup) { return connectionsGroup.append('line') .classed('drag-link', true) .classed('tool-connect', true) .attr('x1', 0) .attr('y1', 0) .attr('x2', 0) ``` However, only the first line...
With this PR I added the basic support for opening and closing shutter items. This addresses the issue #95 opened by me. As I do not have any Python knowledge...
Hi, from what I got from the docs I am currently not able to control shutters using commands like "open"/"close" or "up"/"down". I feel like it should be quite easy...
Because of the new v3 version for Foundation 6 the old v3 branch and the old issues should be removed. Also the new v3.0 branch should become the main branch.
Hi, I have several own helpers that need to be bound like so: ```handlebars {{#if 'selectedComponent' bind=true}} {{#bind 'selectedComponent.name'}} {{getPropertyTranslation selectedComponent.name}} {{/bind}} {{/if}} ``` So basically if the component is...
Hi, in my project I am using multiple instances of Handlebars for different HTML elements, which are created using `handlebarsBinding(createHandlebarsInstance())`. I noticed that somehow they different instances interfere, which means...
Hi, I noticed that having are route with only a HEAD request defined leads to it being filtered out [here](https://github.com/davesag/swagger-routes-express/blob/f31a7510ce8e48f4b780b919bc96c73294ee743a/src/extract/v3/extractPaths.js#L40). Adding `head` to the list of methods seems to fix...