Introduction
The document describe methods that may be used to access system information stored on the H200 STB. This can be done by accessing system settings menu (Android/Amino), taking advantage of the native OSD information feature or connecting to the STB with the adb tool and reading the system properties.
Accessing Android system settings menu
Pressing the blue button on the remote when the H200 is in zapper mode.
When tvapp.package_id is not set, H200 is in its default zapper mode. Press the blue button under this mode brings out the Android system settings menu.
Binding a color key on the remote to invoke the Android settings menu
1. Assign the deep link pkg://com.android.tv.settings?cls=com.android.tv.settings.MainSettings to one of the color keys on the remote.
e.g. key.link.blue="pkg://com.android.tv.settings?cls=com.android.tv.settings.MainSettings"
2. Boot up the STB with the new setting.
3. Press the assigned color key to open the Android settings menu, select "Device Preferences".
4. Select "Device Preferences".
5. Select "About". Scroll down the menu and find "OS version", "Build" which contains the STB firmware version, and system information like "Serial number".
Accessing Amino system settings menu
Binding a color key on the remote to invoke the Amino settings menu
1. Assign the deep link pkg://com.aminocom.settingsmenu to one of the 4 color keys on the remote.
e.g. key.link.yellow="pkg://com.aminocom.settingsmenu"
2. Boot up the STB with the new setting.
3. Press the assigned color key to open the Amino settings menu.
4. Press "Information" to find "Software version" which is the STB firmware version and system information like "SN".
Enable OSD Information to display S/N, MAC address and IP on the TV
See H200 System Information OSD usage guide.
Access H200 system information with the adb console tool
1. Download adb tool from the Android official site and install the tool on your PC.
2. Setup the STB so that it is ready to accept adb connections, see How to set developer mode and usb-debug?. Alternatively it is possible to enable developer mode from the Android settings menu, see step 1-3 of the section "Enabling Developer Options" of the article Setting Up ADB on Amino Apollo for USB Access
4. From the command prompt on your PC, navigate to folder that has adb.exe and run the following command,
adb connect {ip address of the H200 STB}
adb shell
Following output should be observed on the command prompt.
C:\platform-tools_r27.0.1-windows\platform-tools>adb connect 10.0.6.133
already connected to 10.0.6.133:5555
C:\platform-tools_r27.0.1-windows\platform-tools>adb shell
H200:/ $
5. Run the following command to get the native AndroidTV STB system setting.
H200:/ $ getprop
6. Run the following command to get the Amino STB setting.
H200:/ $ device_param -l
Comments
0 comments
Article is closed for comments.