Skip to content
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

Add OSO Energy integration #70365

Merged
merged 37 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2eb0db0
Add OSO Energy integration
osohotwateriot Apr 21, 2022
f442086
Add min/max for v40 level and bump pyosoenergyapi to 1.0.2
osohotwateriot May 11, 2022
9a3e0e6
OSO Energy address review comments
osohotwateriot Jul 14, 2022
7af68d2
Bump pyosoenergyapi to 1.0.3 and remove scan interval
osohotwateriot Aug 4, 2022
1d5ba58
Remove unnecessary code
osohotwateriot Sep 28, 2022
3c4843f
Merge branch 'dev' into osoenergy
osohotwateriot Dec 6, 2022
3a24b08
Merge branch 'dev' into osoenergy
osohotwateriot Dec 8, 2022
9befade
Merge branch 'dev' into osoenergy
osohotwateriot Dec 14, 2022
bda3176
Merge branch 'dev' into osoenergy
osohotwateriot Jan 19, 2023
5192d2d
Merge branch 'dev' into osoenergy
Danielhiversen Apr 28, 2023
ac51123
Update homeassistant/components/osoenergy/__init__.py
osohotwateriot May 2, 2023
88e7d5d
Merge branch 'dev' into osoenergy
osohotwateriot May 2, 2023
d188f7e
Merge branch 'dev' into osoenergy
osohotwateriot May 2, 2023
ee7828d
Fixes to latest version
osohotwateriot May 2, 2023
3acfcea
Add support to set temperature
osohotwateriot May 3, 2023
50ace86
Update homeassistant/components/osoenergy/config_flow.py
osohotwateriot May 4, 2023
ee3d69e
Fixes after review
osohotwateriot May 4, 2023
c53d8be
Merge branch 'dev' into osoenergy
osohotwateriot May 9, 2023
5c6c760
Remove unused code
osohotwateriot May 9, 2023
d0245e4
Merge branch 'dev' into osoenergy
edenhaus Aug 7, 2023
12217db
Merge branch 'dev' into osoenergy
osohotwateriot Aug 14, 2023
bf233f8
Add support for translations and modify services
osohotwateriot Aug 15, 2023
15bf6e7
Apply suggestions from code review
osohotwateriot Aug 18, 2023
ca207e3
Refactor services and constants according to the PR suggestions
osohotwateriot Aug 18, 2023
52e998b
Remove unnecessary code
osohotwateriot Aug 31, 2023
cd67848
Merge branch 'dev' into osoenergy
osohotwateriot Sep 12, 2023
0543afc
Remove unused import in constants
osohotwateriot Sep 12, 2023
bae6dbb
Merge branch 'dev' into osoenergy
osohotwateriot Sep 25, 2023
d1b79af
Refactoring and support for multiple instances
osohotwateriot Sep 25, 2023
8840296
Merge remote-tracking branch 'refs/remotes/origin/osoenergy' into oso…
osohotwateriot Sep 25, 2023
6d4edff
Apply suggestions from code review
osohotwateriot Oct 2, 2023
71e3711
Refactor code and apply review suggestions
osohotwateriot Oct 2, 2023
72412d8
Bump pyosoenergyapi to 1.0.5
osohotwateriot Oct 4, 2023
d20c24a
Merge branch 'dev' into osoenergy
osohotwateriot Oct 6, 2023
dc93b29
Remove services to reduce initial PR
osohotwateriot Oct 6, 2023
1ac0b29
Merge branch 'dev' into osoenergy
osohotwateriot Oct 31, 2023
a1bec70
Remove extra state attributes and make OSO Entity generic
osohotwateriot Dec 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add min/max for v40 level and bump pyosoenergyapi to 1.0.2
  • Loading branch information
osohotwateriot committed Oct 17, 2022
commit f44208687acb0f12bb312c26bf9fd314ce32b892
2 changes: 2 additions & 0 deletions homeassistant/components/osoenergy/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
"profile": "profile",
"volume": "volume",
"v40_min": "v40_min",
"v40_level_min": "v40_level_min",
"v40_level_max": "v40_level_max",
}
HEATER_MIN_TEMP = 10
HEATER_MAX_TEMP = 80
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/osoenergy/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "OSO Energy",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/osoenergy",
"requirements": ["pyosoenergyapi==1.0.1"],
"requirements": ["pyosoenergyapi==1.0.2"],
"ssdp": [],
osohotwateriot marked this conversation as resolved.
Show resolved Hide resolved
"zeroconf": [],
"homekit": {},
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1781,7 +1781,7 @@ pyopnsense==0.2.0
pyoppleio==1.0.5

# homeassistant.components.osoenergy
pyosoenergyapi==1.0.1
pyosoenergyapi==1.0.2

# homeassistant.components.opentherm_gw
pyotgw==2.1.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ pyopenuv==2022.04.0
pyopnsense==0.2.0

# homeassistant.components.osoenergy
pyosoenergyapi==1.0.1
pyosoenergyapi==1.0.2

# homeassistant.components.opentherm_gw
pyotgw==2.1.1
Expand Down