鸿蒙OS OEM扩展接口

场景介绍

为了支持不同 OEM 车型信号矩阵定制化需求,HarmonyOS 提供了 OEM 扩展接口,用于访问/设置/订阅/去订阅 OEM 自定义信号。

说明

该功能针对不同的 OEM 车厂/车型,提供了统一的 OEM 扩展接口。

接口说明

目前 OEM 扩展接口提供的功能有如下表所示:

接口名 描述
getVehicleSignal() 获取 OEM 自定义信号实时取值。
getVehicleSignalMultiAreas() 获取指定 OEM 自定义信号的多区域值。
setVehicleActuator() 设置 OEM 自定义执行器参数值。
subscribeVehicleSignal() 订阅指定的 OEM 自定义信号。
unsubscribeVehicleSignal() 取消订阅指定的 OEM 自定义信号。
unsubscribeVehicleSignalAll() 取消订阅全部的 OEM 自定义信号。

开发步骤

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

// 设置辅助输入信号值
String propId = "OEM_Status_DTCCountTest";
int zoneId = VehicleZone.ZONE_NONE;
Boolean value = true;
VehicleActuatorCallback callback = new VehicleActuatorCallback() {
    @Override
    public void onErrorActuator(String propId, int zoneId, int outResult) {
    }
};
bool result = true;
try {
    VehicleVendorExtensionManager.setVehicleActuator(propId, zoneId, callback, value);
} catch(RemoteException | IllegalArgumentException e) {
    result = false;
}
if(!result) {
    System.out.println(String.format("Set transmiss performance mode error: %d", result));
}
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《鸿蒙OS OEM扩展接口》
文章链接:https://zhuji.vsping.com/312258.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。