commit | aa402b2eadb18e809a263e4763072f9205f34a63 | [log] [tgz] |
---|---|---|
author | Owner Cleanup Bot <swarming-tasks@owners-cleanup-prod.google.com.iam.gserviceaccount.com> | Thu Jun 06 20:03:06 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Jun 06 20:03:06 2024 +0000 |
tree | 6bba62294855c7874c76e19a8afe7cc574e79d2d | |
parent | 9e0d810b405b848a64be35e18db454285946c629 [diff] | |
parent | 73b970951f3781e43600218ab3f1e242043da76c [diff] |
Remove igorr@google.com from OWNERS am: acb8e9d848 am: 73b970951f Original change: https://android-review.googlesource.com/c/platform/packages/apps/Car/RotaryController/+/3118512 Change-Id: I22abbadd7a02be090d3cf9151fa662fde931e9ae Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
make CarRotaryController -j64
To enable, run:
adb shell settings put secure enabled_accessibility_services com.android.car.rotary/com.android.car.rotary.RotaryService
To disable, run:
adb shell settings delete secure enabled_accessibility_services
To rotate the controller counter-clockwise, run:
adb shell cmd car_service inject-rotary
For clockwise, run:
adb shell cmd car_service inject-rotary -c true
To rotate the controller multiple times (100 ms ago and 50 ms ago), run:
adb shell cmd car_service inject-rotary -dt 100 50
To nudge the controller up, run:
adb shell cmd car_service inject-key 280
Use KeyCode 280
for nudge up, 281
for nudge down,282
for nudge left,283
for nudge right.
To click the controller center button, run:
adb shell cmd car_service inject-key 23
To long click the controller center button, send down and up action seperately. For example:
adb shell cmd car_service inject-key 23 -a down && sleep 2 && adb shell cmd car_service inject-key 23 -a up