-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
fix deprications and add unit of measurement to battery_level sensor #53
Closed
Closed
Changes from 38 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
0ab095c
Update sensor.py
ChristophCaina 8aba915
Update manifest.json
ChristophCaina 507c2da
Update binary_sensor.py
ChristophCaina 2697441
rebase from running HA
ChristophCaina 0802039
Update binary_sensor.py
ChristophCaina 3ed5a9c
Update binary_sensor.py
ChristophCaina f6bacf0
Update sensor.py
ChristophCaina c143558
Create de.json
ChristophCaina cc5cfe3
Update README.md
ChristophCaina 12d6536
Delete README.md
ChristophCaina add09ed
Update __init__.py
ChristophCaina 956190b
Update manifest.json
ChristophCaina b66d288
Merge pull request #16 from ChristophCaina/fix-deprication-warnings-f…
ChristophCaina 6428bd9
Delete manifest.json
ChristophCaina d735d65
Create manifest.json
ChristophCaina 03c5de9
Update manifest.json
ChristophCaina c718b59
Update manifest.json
ChristophCaina b81c707
Create README.md
ChristophCaina a53c7de
Update manifest.json
ChristophCaina 9aa7348
Update README.md
ChristophCaina c539bba
Update hacs.json
ChristophCaina b5a6f25
restructured content
ChristophCaina 0fbd68c
Delete __init__.py
ChristophCaina 2506773
Delete binary_sensor.py
ChristophCaina 3e51a9f
Delete custom_components/manifest.json
ChristophCaina efd9691
Add files via upload
ChristophCaina 06ad0df
Delete config_flow.py
ChristophCaina 630ed5d
Delete const.py
ChristophCaina 82a8862
Delete device_tracker.py
ChristophCaina a10b37a
Delete manifest.json
ChristophCaina 27d9874
Delete sensor.py
ChristophCaina 47226bf
Delete services.yaml
ChristophCaina 9ae2601
Delete strings.json
ChristophCaina 752d0e4
Update manifest.json
ChristophCaina 8beb48c
Update manifest.json
ChristophCaina a9b8666
Update hacs.json
ChristophCaina 058f7c2
Update manifest.json
ChristophCaina de1f9af
Create nl.json
ChristophCaina 13342dd
Delete README.md
ChristophCaina 4ea6065
Delete custom_components/sureha/manifest.json
ChristophCaina db37934
Delete hacs.json
ChristophCaina File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "SureHA", | ||
"version": "0.4.4", | ||
"documentation": "https://github.com/ChristophCaina/sureha", | ||
"issue_tracker": "https://github.com/ChristophCaina/sureha/issues", | ||
"domain": "sureha", | ||
"config_flow": true, | ||
"codeowners": ["@ChristophCaina"], | ||
"requirements": ["surepy>=0.9.0"], | ||
"iot_class": "cloud_polling" | ||
} |
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"config": { | ||
"error": { | ||
"invalid_auth": "Ungültige Authentifizierung", | ||
"unknown": "Unerwarteter Fehler" | ||
}, | ||
"step": { | ||
"user": { | ||
"data": { | ||
"password": "Passwort", | ||
"username": "Benutzername" | ||
}, | ||
"description": "Mit dem Sure Petcare Konto anmelden.", | ||
"title": "Sure Petcare" | ||
} | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"init": { | ||
"data": { | ||
"voltage_full": "Volt (Batterien voll)", | ||
"voltage_low": "Volt (Batterien leer)" | ||
}, | ||
"description": "Batterie Optionen", | ||
"title": "SureHA Opptionen" | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"config": { | ||
"error": { | ||
"invalid_auth": "Invalid authentication", | ||
"unknown": "Unexpected error" | ||
}, | ||
"step": { | ||
"user": { | ||
"data": { | ||
"password": "Password", | ||
"username": "Username" | ||
}, | ||
"description": "Login with your Sure Petcare Account.", | ||
"title": "Sure Petcare" | ||
} | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"init": { | ||
"data": { | ||
"voltage_full": "Voltage (batteries full)", | ||
"voltage_low": "Voltage (batteries low)" | ||
}, | ||
"description": "Battery options", | ||
"title": "SureHA Options" | ||
} | ||
} | ||
} | ||
} |
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 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"config": { | ||
"error": { | ||
"invalid_auth": "Ungültige Authentifizierung", | ||
"unknown": "Unerwarteter Fehler" | ||
}, | ||
"step": { | ||
"user": { | ||
"data": { | ||
"password": "Passwort", | ||
"username": "Benutzername" | ||
}, | ||
"description": "Mit dem Sure Petcare Konto anmelden.", | ||
"title": "Sure Petcare" | ||
} | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"init": { | ||
"data": { | ||
"voltage_full": "Volt (Batterien voll)", | ||
"voltage_low": "Volt (Batterien leer)" | ||
}, | ||
"description": "Batterie Optionen", | ||
"title": "SureHA Opptionen" | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"config": { | ||
"error": { | ||
"invalid_auth": "Ongeldige authenticatie", | ||
"unknown": "Onverwachte fout" | ||
}, | ||
"step": { | ||
"user": { | ||
"data": { | ||
"password": "Wachtwoord", | ||
"username": "Gebruikersnaam" | ||
}, | ||
"description": "Log in met je Sure Petcare account.", | ||
"title": "Sure Petcare" | ||
} | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"init": { | ||
"data": { | ||
"voltage_full": "Voltage (batterijen vol)", | ||
"voltage_low": "Voltage (batteries leeg)" | ||
}, | ||
"description": "Batterij opties", | ||
"title": "SureHA opties" | ||
} | ||
} | ||
} | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I cant merge it with this 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol... ok.
I honestly thought, I removed that already...
Seems that it was re-added with recent changes.
Sorry