-
Notifications
You must be signed in to change notification settings - Fork 25
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
Supported devices #7
Comments
Where can I find the database file to export? |
wouldn't you also need to add the new device types to ha-discovery.js? |
The T8200 is still not really working for me:
I changed the code so that it works for me. I will try and make a commit from it. But I only need the doorbell pressed event, and I don't have any other devices, so my code might not work for others. (edit: the escapes in the quotes were not visible) |
@liquidbear99 It is in the data folder. If you used Docker, it should be where you mapped it. If you started it with @m-paulus That is correct, added it... @polleke563 Will add 1. Fixing 2 might be harder when I cannot test it... Weird that part of it is a string... Can you share your code? |
Glad to do so, did a PR, but was already a couple of commits behind. |
Is the Eufy entry/door sensor also supported? |
Not yet. If push messages are received by the app for these sensors, it might be possible to integrate them. If you can provide them, please create a new ticket. |
For supported devices, see the readme.
To add new devices, or new message types, make sure the messages are logged when the script is running. (You should receive them on your phone as well).
Provide an export
sqlite3 -csv database.sqlite "SELECT * FROM push_payloads" > export.csv
DIY
You can also help by submitting a PR with code changes. Some pointers:
enums/device_type.js
enums/device_type.js
If you need to add a new capability / notificationType:
enums/notification_type.js
mqtt/ha-discovery.js
, add it tobaseTopicForCapability
,payloadForCapability
andconfigurationForCapability
mqtt/client.js
, starting fromprocessPushNotification
check if everything is handled correctlyPlease also update the readme with the supported device
The text was updated successfully, but these errors were encountered: