三星智能设备信息

时间:2013-01-17 14:31:57

标签: samsung-smart-tv

我正在构建一个应用程序,需要有关其运行的设备的信息,例如制造商,型号及其支持的内容(例如3D,外部控件(鼠标,键盘等))等等上。

在LG电视上,我可以通过引用DOM元素并读取它的属性来访问它:http://developer.lgappstv.com/TV_HELP/index.jsp?topic=%2Flge.tvsdk.developing.book%2Fhtml%2FAPI%2FAPI%2FProperties2.htm

如何在三星设备上执行此操作?

1 个答案:

答案 0 :(得分:1)

发现它!结果必须加载$MANAGER_WIDGET/Common/af/2.0.0/loader.js,然后您才能访问deviceapis对象。例如:

if (deviceapis)
{
    // ermagad
    deviceId = findKey(deviceapis.tv.info, deviceapis.tv.info.getProduct()) + '; ' +
        deviceapis.platform + '; ' +
        deviceapis.tv.info.getDeviceID() + '; ' +
        deviceapis.tv.info.getModel() + '; ' +
        deviceapis.tv.info.getFirmware() + '; ' +
        deviceapis.tv.info.getCountry() + '; ' +
        deviceapis.tv.info.getLanguage() + '; ' +
        deviceapis.tv.info.getVersion() + '; ' +
        findKey(deviceapis.displaycontrol, deviceapis.displaycontrol.get3DEffectMode()) + '; ' +
        findKey(deviceapis.audiocontrol, deviceapis.audiocontrol.getOutputMode());
}