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

Home Assistant 'Great Migration' fixes #13

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
Android actionable notifications for Home Assistant.

## Setup
1. Copy the fcm-android.py file into your /custom_components/notify/ folder (create it if you don't already have it)
2. In your configuration.yaml file, add the following to initialize the components:
1. Create an `fcm-android` folder in your `<config>/custom_components/` directory (create it if you don't already have it).
2. Copy `notify.py`, `__init__.py`, and `manifest.json` files into `<config>/custom_components/fcm-android/`
3. In your `configuration.yaml` file, add the following to initialize the components:

```
notify:
Expand Down
1 change: 1 addition & 0 deletions custom_components/fcm-android/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

8 changes: 8 additions & 0 deletions custom_components/fcm-android/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"domain": "https://github.com/Crewski/HANotify",
"name": "HANotify",
"documentation": "https://github.com/Crewski/HANotify",
"dependencies": [],
"codeowners": ["@Crewski"],
"requirements": []
}
Loading