Skip to content
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