-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thermostat #12
Open
Alloc186
wants to merge
704
commits into
mileperhour:master
Choose a base branch
from
rospogrigio:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Thermostat #12
Conversation
This file contains 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
@postlund, I see you are still pushing into this PR which is inside mileperhour's repo... is this really your intention? |
Hmm, I don't really understand what is happening here and how can I have permissions to push here anyway.... |
Uhm, this is a merge from master in your repo so it will keep updating every time something is merged to master in your fork. That's the problem. |
update to the new fan platform
Implementation of climate platform
Vacuum platform new
There is a typo in target precision which prevents corrct handling of temperature
* Add link to _tinytuya_. * Clarify steps in Home Assistant Configuration screens. * Set `yaml` syntax on a code example.
Use the core utility rather than reimplementing it. Signed-off-by: Peter A. Bigot <[email protected]>
If light.turn_on is invoked with `brightness: 128, color_temp: 500` for a bulb that supports mired range 154..370 in value range 1..255 the calculated color temperature will be negative. When the bulb receives the command it may turn on, but will fail processing the color_temp operation and will not send a response. At this point `light.toggle` will have no effect because Home Assistant is unaware that the bulb is on. Fix the state by clamping the sent color temperature to the allowed range. Signed-off-by: Peter A. Bigot <[email protected]>
Update climate.py
Fix color temperature to use correct conversion and clamp to allowed range
Add Brazilian Portuguese translation
Fix #1610 - Replaced SUPPORT_* with enums
* Add support for more ac/fan modes * Replace deprecated constants with enums * Add support for ClimateEntityFeature.TURN_{ON,OFF} * Fix swing log message --------- Co-authored-by: Simon Tegelid <[email protected]>
…low setup failures without crashing
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
JordiSaPe
approved these changes
Jul 5, 2024
Based on https://developers.home-assistant.io/blog/2024/06/12/async_forward_entry_setups/ it is possible to replace it with `async_forward_entry_setups` instead, which accepts multiple platforms and it should be more efficient.
* Add discovered HVAC and PRESET options This commit adds the HVAC Action Set and Preset Set that I've discovered my Bödenwarme Underfloor Heating thermostat to be using as detailed here: #1175 * Add HVAC mode and action sets for climate entities These are the actions and modes as reported by the Magnum smart wifi thermostat: https://www.magnumheating.com/product/remote-control/ --------- Co-authored-by: Rutger Kerkhoff <[email protected]>
iPAC-40 Portable Air Conditioning Heat Pump with Wifi and Remote Control. These devices have a limited option of modes. The available modes are Hot, Cold and Dry. Co-authored-by: rospogrigio <[email protected]>
…m WARNING to DEBUG. (#1816) Loglevel warning produces a huge amount of log messages (around 500000 a day - depends on how much tuya devices are in your local network). Co-authored-by: Tobias Dörfler <[email protected]> Co-authored-by: rospogrigio <[email protected]>
Tuya integration page shows new information and no longer includes how to get Client ID & Secret. Added those here. Co-authored-by: rospogrigio <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi can you add also support for local control of thermostats? I mean climate entity class.
Thank you!