Skip to content

Commit fa2c390

Browse files
Forking
1 parent c1731e4 commit fa2c390

File tree

5 files changed

+31
-16
lines changed

5 files changed

+31
-16
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 4
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = false
12+
insert_final_newline = true

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"ms-python.black-formatter",
4+
"ms-python.python"
5+
]
6+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![hacs_badge](https://img.shields.io/badge/HACS-Custom-orange.svg?style=for-the-badge)](https://github.com/custom-components/hacs)
2-
<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>
2+
<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>
33
# Eufy RobovVac control for Home Assistant
44

55
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.
Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
{
2-
"domain": "robovac",
3-
"name": "Eufy Robovac",
4-
"config_flow": true,
5-
"documentation": "https://github.com/bmccluskey/robovac",
6-
"issue_tracker": "https://github.com/bmccluskey/robovac/issues",
7-
"requirements": [],
8-
"ssdp": [],
9-
"zeroconf": [],
10-
"homekit": {},
11-
"dependencies": [],
12-
"codeowners": ["@bmccluskey"],
13-
"iot_class": "local_polling",
14-
"version": "1"
2+
"domain": "robovac",
3+
"name": "Eufy Robovac",
4+
"config_flow": true,
5+
"documentation": "https://github.com/codefoodpixels/robovac",
6+
"issue_tracker": "https://github.com/codefoodpixels/robovac/issues",
7+
"requirements": [],
8+
"dependencies": [],
9+
"codeowners": ["@codefoodpixels"],
10+
"iot_class": "local_polling",
11+
"integration_type": "device"
1512
}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
setup(
2727
name='robovac',
2828
version="1.0",
29-
author='Brendan McCluskey',
30-
url='http://github.com/bmccluskey/robovac',
29+
author='Luke Bonaccorsi',
30+
url='http://github.com/codefoodpixels/robovac',
3131
packages=find_packages(),
3232
scripts=[],
3333
description='Python API for controlling Eufy Robovac vacuum cleaners',

0 commit comments

Comments
 (0)