-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Settings: MQTT broker address is now a text field and thus allows entering of hostnames - will now check whether the title information changes during progress checking, and will republish the "title" topic if a change was detected - increase progress publish rate to 20s (from 30s) - avoid "kodi2mqtt" as a name in the documentation and addon itself, and instead stick to "MQTT Adapter"
- Loading branch information
Showing
6 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
kodi2mqtt | ||
========= | ||
MQTT addon for Kodi | ||
=================== | ||
|
||
Written and (C) 2015 Oliver Wagner <[email protected]> | ||
|
||
|
@@ -8,7 +8,7 @@ kodi2mqtt | |
|
||
Overview | ||
-------- | ||
kodi2mqtt is a Kodi addon which acts as an adapter between a Kodi media center instance and MQTT. | ||
This is a Kodi addon which acts as an adapter between a Kodi media center instance and MQTT. | ||
It publishes Kodi's playback state on MQTT topics, and provides remote control capability also via | ||
messages to MQTT topics. | ||
|
||
|
@@ -29,7 +29,7 @@ Settings | |
-------- | ||
The addon has three settings: | ||
|
||
* the MQTT broker's IP address (defaults to 127.0.0.1) | ||
* the MQTT broker's host name or IP address (defaults to 127.0.0.1) | ||
* the MQTT broker's port. This defaults to 1883, which is the MQTT standard port for unencrypted connections. | ||
* the topic prefix which to use in all published and subscribed topics. Defaults to "kodi/". | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ The kodi2mqtt addon is licensed under the terms of the MIT license: | |
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Oliver Wagner | ||
Copyright (c) 2015 Oliver Wagner <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters