This module adds support for Pushover notifications to Minoss server.
The API communication is based on google-home-audio-tts.
- Installation
- Configuration
- Basic Usage
- Parameter Shorthand
- Message Builder
- Bugs / Feature request
- License
- Donation
Inside your Minoss root folder just use npm to install this Module.
$ npm install minoss-google-homeBy default there are three configuration files available inside the config/ folder: audio, devices and messages.
The configuration for audio and messages are optionally.
It is possible to store different predefined audio files and message objects there, if wanted.
For more details take a look inside the files or read about the message builder.
Before using this module the devices configuration should be set up.
This file contains the ip and default language for all home devices where notifications should be send to.
It is possible to store the devices under own names.
The name default is a reserved name.
It will select this device whenever no device name was given by request parameters.
So, if only one device is available, the name default should be used.
module.exports = {
default: {
ip: '192.168.2.123',
language: 'en'
},
another: {
ip: '192.168.2.234',
language: 'de'
}
};The basic usage is pretty simple.
When a default device is defined just call the audio or tts script with a supplied url or message string to be send.
For more parameters take a look at the parameter shorthands.
All request parameters can be shorten to it's first character (except stream_type, which is shorten with st).
With this it is possible to use shorten URLs.
device -> d
language -> l
volume -> v
restore -> r
stream_type -> st
timeout -> t
speed -> s
message -> m
url -> u
Example:
http://localhost:8080/google-home/tts?**device**=default&**volume**=1&**message**=test
http://localhost:8080/google-home/tts?**d**=default&**v**=1&**m**=test
You can build the message with all properties by url parameter, as JSON object or as stored configurations.
Messages can be predefined in configuration. If there are messages configured they can be send by it's name on request:
It is possible to use a JSON string as message object on request.
It works the same way as with predefined messages:
http://localhost:8080/google-home/tts?message=**{"message":"my message","volume":1,"language":"en"}**
Please report bugs and feel free to ask for new features directly on GitHub.
Minoss is dual-licensed under MIT and GPL-2.0 license.
You like to support me?
You appreciate my work?
You use it in commercial projects?
Feel free to make a little donation! 😉
