firstof9
(firstof9)
June 26, 2020, 4:27pm
467
If you open the ozw-admin panel do you see the setpoints in there?
Guff666
(Gareth Howell)
June 26, 2020, 9:13pm
469
Ahah! Thanks @freshcoast . Both my problematic devices. That’s just what I was looking for.
RayBe
June 27, 2020, 10:54am
470
Done,
I get the feeling the mapping for the motion sensor part of the device is not functioning correctly.
See also the comments i placed in Github.
I am very novice at this, but am willing to learn and try/help.
I tried altering the mapping through the devices xml file, but am a bit lost there.
Thanks a bunch!
If you need any more info/help, please let me know.
EDIT: i also found a manual that IIRC got the sensor to work with Openhab, maybe it is useful here also. I attached it to Github
bar
June 30, 2020, 3:48pm
471
will cover’s component get supported anytime soon?
thanks
There was a PR approved today … so looks like it will be in soon Not sure if it will make today’s release or not…
home-assistant:dev
← Michsior14:feat/add-cover-to-ozw
opened 02:36AM - 29 Jun 20 UTC
<!--
You are amazing! Thanks for contributing to our project!
Please, DO N… OT DELETE ANY TEXT from this template! (unless instructed).
-->
## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
or resolves a feature request, be sure to link to that issue in the
additional information section.
-->
Adds cover platform to ozw component.
## Type of change
<!--
What type of change does your PR introduce to Home Assistant?
NOTE: Please, check only 1! box!
If your PR requires multiple boxes to be checked, you'll most likely need to
split it into multiple PRs. This makes things easier and faster to code review.
-->
- [ ] Dependency upgrade
- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New integration (thank you!)
- [x] New feature (which adds functionality to an existing integration)
- [ ] Breaking change (fix/feature causing existing functionality to break)
- [ ] Code quality improvements to existing code or addition of tests
## Additional information
<!--
Details are important, and help maintainers processing your PR.
Please be sure to fill out additional details, if applicable.
-->
- This PR fixes or closes issue: fixes #
- This PR is related to issue:
- Link to documentation pull request:
## Checklist
<!--
Put an `x` in the boxes that apply. You can also fill these out after
creating the PR. If you're unsure about any of them, don't hesitate to ask.
We're here to help! This is simply a reminder of what we are going to look
for before merging your code.
-->
- [x] The code change is tested and works locally.
- [x] Local tests pass. **Your PR cannot be merged unless tests pass**
- [x] There is no commented out code in this PR.
- [x] I have followed the [development checklist][dev-checklist]
- [x] The code has been formatted using Black (`black --fast homeassistant tests`)
- [x] Tests have been added to verify that the new code works.
If user exposed functionality or configuration variables are added/changed:
- [ ] Documentation added/updated for [www.home-assistant.io][docs-repository]
If the code communicates with devices, web services, or third-party tools:
- [ ] The [manifest file][manifest-docs] has all fields filled out correctly.
Updated and included derived files by running: `python3 -m script.hassfest`.
- [ ] New or updated dependencies have been added to `requirements_all.txt`.
Updated by running `python3 -m script.gen_requirements_all`.
- [ ] Untested files have been added to `.coveragerc`.
The integration reached or maintains the following [Integration Quality Scale][quality-scale]:
<!--
The Integration Quality Scale scores an integration on the code quality
and user experience. Each level of the quality scale consists of a list
of requirements. We highly recommend getting your integration scored!
-->
- [ ] No score or internal
- [ ] 🥈 Silver
- [ ] 🥇 Gold
- [ ] 🏆 Platinum
<!--
Thank you for contributing <3
Below, some useful links you could explore:
-->
[dev-checklist]: https://developers.home-assistant.io/docs/en/development_checklist.html
[manifest-docs]: https://developers.home-assistant.io/docs/en/creating_integration_manifest.html
[quality-scale]: https://developers.home-assistant.io/docs/en/next/integration_quality_scale_index.html
[docs-repository]: https://github.com/home-assistant/home-assistant.io
sender
June 30, 2020, 4:20pm
473
And when will the official add-on be updated then?
finity
June 30, 2020, 4:29pm
474
You’ll have to ask the add-on maintainer that question.
bar
June 30, 2020, 4:36pm
475
great, thanks for the update
sender
June 30, 2020, 4:41pm
476
This is the homeassistant forum isn’t it? “Who” is the owner?
cree8
(Cree8)
June 30, 2020, 4:52pm
477
HomeAssistant components are maintained by many different people. The person whom maintains this for HA is @Fishwaldo I believe
freshcoast
(Z-Wave AI Bot)
June 30, 2020, 4:53pm
478
The addon doesn’t need to be updated for that.
sender
June 30, 2020, 5:08pm
479
What do you mean? The addon use not the latest ozw qt container…
freshcoast
(Z-Wave AI Bot)
June 30, 2020, 6:08pm
480
The implementation of cover support is in the OZW integration. I assumed you were talking about covers since that was the comment you replied to, if that’s not the case then you can ignore.
bar
June 30, 2020, 6:36pm
481
I asked about OZW cover implementation which got merged today and hopefully be part of the next version of HA,
Cover.py was missing from the ozw and therefore was not supported
Hmmbob
June 30, 2020, 6:54pm
482
That cover PR will be in 0.113 - until then you could just set-up the mqtt cover for it:
cover:
platform: mqtt
name: "Cover"
command_topic: "OpenZWave/1/command/setvalue/"
set_position_topic: "OpenZWave/1/command/setvalue/"
set_position_template: "{ \"Value\": {{ position }}, \"ValueIDKey\": 105480209 }"
position_topic: "OpenZWave/1/node/6/instance/1/commandclass/38/value/105480209/"
value_template: "{{ value_json.Value }}"
position_open: 99
position_closed: 0
payload_open: "{ \"Value\": 99, \"ValueIDKey\": 105480209 }"
payload_close: "{ \"Value\": 0, \"ValueIDKey\": 105480209 }"
The ValueIDKey
is specific to your situation - as is the digit after node
.
Kudos to someone else - let me try to find who helped me with this. @balk77 :
Thanks for the explanation. I have it running now, including my Fibaro FGRM-222 roller shutter. Cover component is configured like this:
- platform: "mqtt"
name: "level_mqtt_ozw"
command_topic: "OpenZWave/1/command/setvalue/"
set_position_topic: "OpenZWave/1/command/setvalue/"
set_position_template: "{ \"Value\": {{ position }}, \"ValueIDKey\": xxxxx }"
position_topic: "OpenZWave/1/node/24/instance/1/commandclass/38/value/xxxxx/"
value_template: "{{ value_json.Value }}"
position_o…
1 Like
finity
July 1, 2020, 4:15am
483
well, that was confusing as hell…
Why are we discussing a PR for the built-in zwave integration in the thread for the new ozw beta integration?
We are discussing the beta integration.
There are two major components at play here, 1) the OpenZWave Daemon and 2) the beta integration. They are developed by two different groups/people. The daemon is what actually runs the open z-wave, handles communications with all of the devices, etc. The daemon publishes information it gets from the devices to mqtt.
The Integration (which is what is in beta) takes the information from mqtt and turns it into entities in HA.
To-date, the integration did not know how to support cover devices, even though the daemon publishes the info to mqtt. That is why, if you know how to do it, you could an mqtt cover and still use it by publishing to mqtt directly.
The PR in discussion is to add cover entity support to the beta integration
finity
July 2, 2020, 1:24am
485
But the PR link says it is for HA Core not the ozw beta integration. At least I assume so since the ozw beta integration hasn’t been incorporated into HA core yet. Or has it and I missed something major?
freshcoast
(Z-Wave AI Bot)
July 2, 2020, 1:25am
486
The ozw beta is part of core.
0.110: Ready for one of the biggest releases in our history? Lots of UI and speed improvements, a calendar panel, OpenZWave beta, HomeKit, ONVIF sensors, ignore everything, NOT conditions, ...