From fa2c390748e6463763ce259a6219bcbd3abd2cc2 Mon Sep 17 00:00:00 2001 From: Luke Bonaccorsi Date: Tue, 8 Aug 2023 16:23:06 +0100 Subject: [PATCH] Forking --- .editorconfig | 12 ++++++++++++ .vscode/extensions.json | 6 ++++++ README.md | 2 +- custom_components/robovac/manifest.json | 23 ++++++++++------------- setup.py | 4 ++-- 5 files changed, 31 insertions(+), 16 deletions(-) create mode 100644 .editorconfig create mode 100644 .vscode/extensions.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2087dd7 --- /dev/null +++ b/.editorconfig @@ -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 diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..e5657b3 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "ms-python.black-formatter", + "ms-python.python" + ] +} diff --git a/README.md b/README.md index 170c78b..ef9c544 100644 --- a/README.md +++ b/README.md @@ -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) -Buy Me A Coffee +Buy Me a Coffee at ko-fi.com # 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. diff --git a/custom_components/robovac/manifest.json b/custom_components/robovac/manifest.json index 6de1a94..73b3174 100644 --- a/custom_components/robovac/manifest.json +++ b/custom_components/robovac/manifest.json @@ -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" } diff --git a/setup.py b/setup.py index 11f1d99..4186a4d 100644 --- a/setup.py +++ b/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',