codecamp

鸿蒙OS 开发TBOX相关应用

场景介绍

如果某款车型上装载了车载 T-BOX(Telematics BOX)盒子,开发者可以通过 HarmonyOS 提供的 T-BOX 相关接口获取或设置相关信息,如访问 T-BOX 的 xCall、定时充电等信息。

说明

该功能与具体的车厂车型相关,部分低配车型可能不具备该项功能。

接口说明

目前 TBOX 提供的功能有如下表所示:

接口名 描述
getProperty() 获取指定TBOX信号值。
setActuator() 设置指定TBOX执行器的信号值。
subscribeProperty() 订阅指定TBOX信号。
unsubscribeProperty() 取消订阅指定的TBOX信号。
unsubscribeAllProperty() 取消所有订阅的TBOX信号。
subscribeBatchProperties() 批量订阅TBOX信号。

开发步骤

根据不同管理入口类,调对应接口。

// 设置TBOX属性值
String incorrectPath = TBoxManager.ID_TBOX_BCALL_STATUS;
byte[] result = null;
TBoxPropertyManager manager = new TBoxPropertyManager();
boolean isTrue = false;
try {
    result = manager.getBuffer(tboxPropPath);
    isTrue = true;
} catch (RemoteException | IllegalArgumentException | UnsupportedOperationException e) {
    isTrue = false;
}
鸿蒙OS OEM扩展接口
鸿蒙OS 开发CLUSTER相关应用
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }