Hi,
I needs to control the HVAC_POWER_ON vehicle property and this property defined as true in Defaultconfig.h ( automotive / vehicle / 2.0 / default / impl / vhal_v2_0 / DefaultConfig.h) file.
When I trigger a value from adb shell I got false, how to change the value from false to true ?
for simulation purpose I am using Kitechsink Application.
adb shell dumpsys activity service com.android.car inject-vhal-event 0x15200510 1 1
I checked property ID from the following for HVAC_POWER_ON,
VehiclePropertyIds | Android Developers
Thanks & Regards,
VinothS,
The proper command (for bool data type) is,
adb shell dumpsys activity service com.android.car inject-vhal-event 0x15200510 1 true
Thanks,
VinothS,