-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from MarkusBiggus/dev
refactor some responsibilities from sonnen_api_v2 for ha component
- Loading branch information
Showing
14 changed files
with
419 additions
and
206 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,35 @@ | ||
""" SonnenBatterie API V2 component """ | ||
""" SonnenBatterie API V2 package """ | ||
from .sonnenbatterie import sonnenbatterie | ||
__all__ = ( | ||
"set_login_timeout", | ||
"get_login_timeout", | ||
"set_request_connect_timeout", | ||
"get_request_connect_timeout", | ||
"set_request_read_timeout", | ||
"get_request_read_timeout", | ||
"get_powermeter", | ||
"get_batterysystem", | ||
"get_inverter", | ||
"get_systemdata", | ||
"get_status", | ||
"get_battery", | ||
"get_latest_data", | ||
"get_configurations", | ||
"get_configuration", | ||
"get_current_charge_level", | ||
"get_operating_mode", | ||
"get_operating_mode_name", | ||
"get_battery_reserve", | ||
"get_time_of_use_schedule_as_string", | ||
"get_time_of_use_schedule_as_json_objects", | ||
"get_time_of_use_schedule_as_schedule", | ||
"set_manual_flowrate", | ||
"set_discharge", | ||
"set_charge", | ||
"set_configuration", | ||
"set_operating_mode", | ||
"set_operating_mode_by_name", | ||
"set_battery_reserve", | ||
"set_battery_reserve_relative_to_currentCharge", | ||
"set_time_of_use_schedule_from_json_objects", | ||
) |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.