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 Keba charging station/wallbox as component #24484

Merged
merged 28 commits into from
Aug 19, 2019
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a282e7b
Add Keba charging station wallbox component
dannerph Jun 11, 2019
88bf0ee
Added start/stop commands (ena 0 and ena 1)
dannerph Jun 12, 2019
3fa430a
added refresh_interval parameter and fixed authorization
dannerph Jul 6, 2019
60abecf
fixed max line length
dannerph Jul 6, 2019
2305759
deactivate failsafe mode if not set in configuration
dannerph Jul 6, 2019
3805ec6
extracted I/O code to pypi library
dannerph Jul 18, 2019
c2c3611
updated services.yaml
dannerph Jul 18, 2019
6c1f158
pinned version of requirements
dannerph Jul 18, 2019
d4bc8e4
fixed typos, indent and comments
dannerph Jul 20, 2019
4023518
simplified sensor generation, fixed unique_id and name of sensors
dannerph Jul 20, 2019
26d7abb
cleaned up data extraction
dannerph Jul 20, 2019
9cd9092
flake8 fixes
dannerph Jul 20, 2019
ad7079c
added fast polling, fixed unique_id, code cleanup
dannerph Jul 21, 2019
f01508e
updated requirements
dannerph Jul 21, 2019
4646056
fixed pylint
dannerph Jul 21, 2019
d2915b0
integrated code styling suggestions
dannerph Aug 7, 2019
9d31bb4
fixed pylint
dannerph Aug 7, 2019
8d33aa0
code style changes according to suggestions and pylint fixes
dannerph Aug 7, 2019
c46672b
formatted with black
dannerph Aug 7, 2019
3e53460
clarefied variables
dannerph Aug 8, 2019
375fdd3
Update homeassistant/components/keba/__init__.py
dannerph Aug 8, 2019
b020fce
Update homeassistant/components/keba/__init__.py
dannerph Aug 8, 2019
648eaa1
Update homeassistant/components/keba/__init__.py
dannerph Aug 8, 2019
2dc9453
Update homeassistant/components/keba/__init__.py
dannerph Aug 8, 2019
9a58535
fixed behaviour if no charging station was found
dannerph Aug 8, 2019
dffe0c4
Merge branch 'keba-charging-station' of https://github.com/dannerph/h…
dannerph Aug 8, 2019
99f7684
fix pylint
dannerph Aug 8, 2019
a381282
Update homeassistant/components/keba/__init__.py
dannerph Aug 19, 2019
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
fixed pylint
  • Loading branch information
dannerph committed Aug 8, 2019
commit 9d31bb4ab1d616358f6f93b9d69f42e248af6b43
1 change: 1 addition & 0 deletions homeassistant/components/keba/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ async def _periodic_request(self):
)

async def setup(self, loop=None, *_):
"""Setup KebaHandler."""
await super().setup(loop)

# Request initial values and extract serial number
Expand Down