dontinelli
dontinelli
I encountered the same error. In my view it should be possible to define sentences to turn on/off one specific device/entity outside homeassistant_HassTurnOn/Off.
@schizza: I see that your PR #946 passed all tests. When I try to do the same (with adding a sentence in the test file), I still get an Error:...
Thank you @schizza, it was indeed the wrong format in the exclude_context-syntax. ``` excludes_context: domain: light, fan ``` With this I (currently) get all tests passed.
> @dontinelli That should be: > > ```yaml > excludes_context: > domain: > - light > - fan > ``` Thank you, in the meanwhile schizza told me the same...
> Am I missing something? > > Ger: "Dimme die Spots in der Küche auf 20%" > > Eng: "Dim the spots in the kitchen to 20%." > > These...
> The state will be translated automatically in Home Assistant according to the existing `strings.json` files, like @ErnestStaug mentioned. For Swiss German (de-CH) according to my understanding no HA translation...
I have the same issue. Interestingly it seems that sometimes the server still seems reachable, leading to the sensors switching between available and unavailable. According to FYTA there was no...
> ```sh > curl -X POST -H "Content-Type: application/json" http://solarlog/getjp -d '{ "878": null }' > ``` > > returns: > > ``` > {"878":"QUERY IMPOSSIBLE 000"} > ``` This...
> ```sh > curl -X POST -H "Content-Type: application/json" http://solarlog/getjp -d '{ "878": null }' > ``` > > returns: > > ``` > {"878":"QUERY IMPOSSIBLE 000"} > ``` This...
> @dontinelli > Think it's line 131 in https://github.com/dontinelli/solarlog_cli/commit/bd1459811d05a63da2d614b0bffb16a86d9c2212#diff-d7bf0ad6f2d0b35bfa9f39baf0fcc8b3b495fd86385da2c426df4c3d6960961bR10 - should be > > `if text.count('QUERY IMPOSSIBLE 000'):` > > instead of > > `if text.count('{"QUERY IMPOSSIBLE 000"}'):` > >...