This commit is contained in:
Luke Bonaccorsi 2023-08-08 16:23:06 +01:00
parent c1731e407e
commit fa2c390748
5 changed files with 31 additions and 16 deletions

12
.editorconfig Normal file
View File

@ -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

6
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"recommendations": [
"ms-python.black-formatter",
"ms-python.python"
]
}

View File

@ -1,5 +1,5 @@
[![hacs_badge](https://img.shields.io/badge/HACS-Custom-orange.svg?style=for-the-badge)](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.

View File

@ -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"
}

View File

@ -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',