The Android Debug Bridge server program.
The Android Debug Bridge (ADB) is a client-server program used in Android application development. This add-on provides the server program and can be used to get full local control over your Android (TV) devices.
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Hass.io add-on.
- Add our Hass.io add-ons repository to your Hass.io instance.
- Install the "ADB - Android Debug Bridge" add-on.
- Ensure that your Android device has developer mode and network debugging enabled.
- Add the IP addresses of your device(s) to the add-on configuration.
- Start the "ADB - Android Debug Bridge" add-on.
- Check the logs of the add-on to see if everything went well.
- Ready to go!
NOTE: Do not add this repository to Hass.io, please use:
https://github.com/hassio-addons/repository
.
Note: Remember to restart the add-on when the configuration is changed.
Example add-on configuration, with all available options:
{
"log_level": "info",
"devices": [
"192.168.1.123",
"192.168.1.100"
],
"reconnect_timeout": 90,
"keys_path": "/config/.androidkeys"
}
Note: This is just an example, don't copy and paste it! Create your own!
Allows you to provide a list of IP addresses (or hostnames) of devices to which the ADB server program connects.
The add-on will try to (re)connect to the listed devices after this timeout has passed. In case one of your devices goes offline and comes back online again the add-on will connect to it within this time setting.
The default is 90 seconds.
The log_level
option controls the level of log output by the addon and can
be changed to be more or less verbose, which might be useful when you are
dealing with an unknown issue. Possible values are:
trace
: Show every detail, like all called internal functions.debug
: Shows detailed debug information.info
: Normal (usually) interesting events.warning
: Exceptional occurrences that are not errors.error
: Runtime errors that do not require immediate action.fatal
: Something went terribly wrong. Add-on becomes unusable.
Please note that each level automatically includes log messages from a
more severe level, e.g., debug
also shows info
messages. By default,
the log_level
is set to info
, which is the recommended setting unless
you are troubleshooting.
Allows you to provide a custom path to where the private/public key pair is stored. This option is not listed by default and completely optional. If you omit this option, the add-on will generate and store a key pair for you internally.
If the provided directory is empty, the add-on will create
a new (fresh) key pair in the specified location.
You can also provide your own key pair, which must be named
adbkey
and adbkey.pub
(and stored in the specified location).
The keys_path
path must be in either /ssl
, /config
or /share
, subfolders
are allowed (e.g., /config/adb/mykeys
).
Your device must be running in developer & network debugging mode, to allow this add-on to connect.
To do this, follow these steps on your Android TV device:
- Press Home and go into Settings.
- Select and press "About" from the Settings menu.
- Scroll down to the "Build" information.
- Select and click on "Build" several times (6-10 times).
- A dialog appears, saying: "You are now a developer".
- Press Home and go into Settings again.
- Select and press "System Preferences" from the Settings menu.
- Select and press "Developer options".
- Scroll down to "Debugging".
- Turn on "Network debugging".
- Done!
Not all devices have the same procedure, so for your device, it might differ a bit. A quick search on Google would probably lead you towards a specific solution for your device.
This ADB add-on can be used with all Android-based devices, and we expect multiple integrations for this to appear in Home Assistant itself.
Integration for the Android TV (Sony, NVidia Shield, Xiaomi Mi Box) media player component, is currently under review by the Home Assistant team and is expected to be part of the Home Assistant core soon.
Nevertheless, you can already use this component by installing it as a custom
component in your setup. This addon provide you a custom component that
was tested for use with this add-on: custom_components/media_player/androidtv.py
Download that file from this GitHub repository and store the file inside your
Home Assistant configuration folder. In case of Hass.io, store it in:
/config/custom_components/media_player/androidtv.py
. Restart Home Assistant
so it can pick up this component.
Note: This is a development version of the Android TV component, and might contain issues.
When the custom component is added to your Home Assistant setup, you can use it like so:
# Example configuration.yaml entry
# Based on adding my NVidia Shield, which has IP 192.168.1.34.
media_player:
- platform: androidtv
host: 192.168.1.34
name: "NVidia Shield"
adb_server_ip: 127.0.0.1
adb_server_port: 5037
- There is a Chrome Extention/App called "ADB Chrome", which can connect to this add-on and actually sideload apps as well!
- Using the
androidtv
component, you can send intents via a service call:- Send
netflix://
as an intent, to start Netflix on your Android TV. - Send
twitch://stream/frenck
as an intent, to start streaming my stream on Twitch. - Send any YouTube URL as an intent, to start streaming a video on YouTube.
- Send
- @McFrojd's Gist with useful intents and lovelace example for a Nvidia Shield Remote.
- This add-on does support ARM-based devices, nevertheless, they must at least be an ARMv7 device. (Raspberry Pi 1 and Zero is not supported).
This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.
Releases are based on Semantic Versioning, and use the format
of MAJOR.MINOR.PATCH
. In a nutshell, the version will be incremented
based on the following:
MAJOR
: Incompatible or major changes.MINOR
: Backwards-compatible new features and enhancements.PATCH
: Backwards-compatible bugfixes and package updates.
Got questions?
You have several options to get them answered:
- The Community Hass.io Add-ons Discord chat server for add-on support and feature requests.
- The Home Assistant Discord chat server for general Home Assistant discussions and questions.
- The Home Assistant Community Forum.
- Join the Reddit subreddit in /r/homeassistant
You could also open an issue here GitHub.
This is an active open-source project. We are always open to people who want to use the code or contribute to it.
We have set up a separate document containing our contribution guidelines.
Thank you for being involved! 😍
The original setup of this repository is by Franck Nijhof.
For a full list of all authors and contributors, check the contributor's page.
Want some more functionality to your Hass.io Home Assistant instance?
We have created multiple add-ons for Hass.io. For a full list, check out our GitHub Repository.
MIT License
Copyright (c) 2019 Franck Nijhof
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.