Forking
This commit is contained in:
parent
c1731e407e
commit
fa2c390748
|
|
@ -0,0 +1,12 @@
|
|||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = true
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"ms-python.black-formatter",
|
||||
"ms-python.python"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
[](https://github.com/custom-components/hacs)
|
||||
<a href="https://www.buymeacoffee.com/bmccluskey" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
|
||||
<a href='https://ko-fi.com/O5O3O08PA' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi3.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
||||
# Eufy RobovVac control for Home Assistant
|
||||
|
||||
A brand new version Eufy RoboVac integration for Home Assistant that includes a Config Flow to add your RoboVac(s) and the local key and ID required. All you need to do is enter your Eufy app credentials and the Config Flow will look up the details for you. After the initial config use the configuration button on the Integration to enter the RoboVac IP address when prompted.
|
||||
|
|
|
|||
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"domain": "robovac",
|
||||
"name": "Eufy Robovac",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/bmccluskey/robovac",
|
||||
"issue_tracker": "https://github.com/bmccluskey/robovac/issues",
|
||||
"requirements": [],
|
||||
"ssdp": [],
|
||||
"zeroconf": [],
|
||||
"homekit": {},
|
||||
"dependencies": [],
|
||||
"codeowners": ["@bmccluskey"],
|
||||
"iot_class": "local_polling",
|
||||
"version": "1"
|
||||
"domain": "robovac",
|
||||
"name": "Eufy Robovac",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/codefoodpixels/robovac",
|
||||
"issue_tracker": "https://github.com/codefoodpixels/robovac/issues",
|
||||
"requirements": [],
|
||||
"dependencies": [],
|
||||
"codeowners": ["@codefoodpixels"],
|
||||
"iot_class": "local_polling",
|
||||
"integration_type": "device"
|
||||
}
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -26,8 +26,8 @@ dynamic_requires = []
|
|||
setup(
|
||||
name='robovac',
|
||||
version="1.0",
|
||||
author='Brendan McCluskey',
|
||||
url='http://github.com/bmccluskey/robovac',
|
||||
author='Luke Bonaccorsi',
|
||||
url='http://github.com/codefoodpixels/robovac',
|
||||
packages=find_packages(),
|
||||
scripts=[],
|
||||
description='Python API for controlling Eufy Robovac vacuum cleaners',
|
||||
|
|
|
|||
Loading…
Reference in New Issue