阅读(535)
赞(11)
鸿蒙OS 开发TBOX相关应用
2020-09-17 10:42:54 更新
场景介绍
如果某款车型上装载了车载 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;
}