我正在开发一个使用 IRLED 控制设备的应用程序。
在 Tizen 可穿戴 SDK 中,我有一个按钮,单击该按钮时应运行以下脚本:
<script>
document.getElementById('tester').onclick = function()
{
var data = "SOME InfraRED CODES !!!!";
webapis.irled.send(
data,
function() {
console.log("data send ok");
},
function(e) {
console.log("Error: " + e.message);
}
);
}
</script>
该应用程序在 mu Gear 2 (SM-R380) 上运行没有任何错误,但是当我点击按钮时,控制台中出现以下错误:
js/main.js (17) :SecurityError: The application does not have the privilege to call this method.
我还在文件中添加了IRLED 权限config.xml
。