public class

AutomotiveCarSensors

extends java.lang.Object

implements CarSensors

 java.lang.Object

↳androidx.car.app.hardware.info.AutomotiveCarSensors

Gradle dependencies

compile group: 'androidx.car.app', name: 'app-automotive', version: '1.2.0-rc01'

  • groupId: androidx.car.app
  • artifactId: app-automotive
  • version: 1.2.0-rc01

Artifact androidx.car.app:app-automotive:1.2.0-rc01 it located at Google repository (https://maven.google.com/)

Overview

Manages access to vehicle specific sensor communication.

Summary

Constructors
publicAutomotiveCarSensors()

Methods
public voidaddAccelerometerListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<Accelerometer> listener)

public voidaddCarHardwareLocationListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<CarHardwareLocation> listener)

public voidaddCompassListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<Compass> listener)

public voidaddGyroscopeListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<Gyroscope> listener)

public voidremoveAccelerometerListener(OnCarDataAvailableListener<Accelerometer> listener)

public voidremoveCarHardwareLocationListener(OnCarDataAvailableListener<CarHardwareLocation> listener)

public voidremoveCompassListener(OnCarDataAvailableListener<Compass> listener)

public voidremoveGyroscopeListener(OnCarDataAvailableListener<Gyroscope> listener)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public AutomotiveCarSensors()

Methods

public void addAccelerometerListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<Accelerometer> listener)

public void removeAccelerometerListener(OnCarDataAvailableListener<Accelerometer> listener)

public void addGyroscopeListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<Gyroscope> listener)

public void removeGyroscopeListener(OnCarDataAvailableListener<Gyroscope> listener)

public void addCompassListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<Compass> listener)

public void removeCompassListener(OnCarDataAvailableListener<Compass> listener)

public void addCarHardwareLocationListener(int rate, java.util.concurrent.Executor executor, OnCarDataAvailableListener<CarHardwareLocation> listener)

public void removeCarHardwareLocationListener(OnCarDataAvailableListener<CarHardwareLocation> listener)

Source

/*
 * Copyright 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package androidx.car.app.hardware.info;

import static androidx.annotation.RestrictTo.Scope.LIBRARY;

import androidx.annotation.NonNull;
import androidx.annotation.RestrictTo;
import androidx.car.app.hardware.common.CarValue;
import androidx.car.app.hardware.common.OnCarDataAvailableListener;

import java.util.concurrent.Executor;

/**
 * Manages access to vehicle specific sensor communication.
 *
 * @hide
 */
@RestrictTo(LIBRARY)
public class AutomotiveCarSensors implements CarSensors {

    public AutomotiveCarSensors() {
    }

    @Override
    public void addAccelerometerListener(@UpdateRate int rate,
            @NonNull Executor executor,
            @NonNull OnCarDataAvailableListener<Accelerometer> listener) {
        executor.execute(()-> listener.onCarDataAvailable(new Accelerometer(
                CarValue.UNIMPLEMENTED_FLOAT_LIST)));
    }

    @Override
    public void removeAccelerometerListener(
            @NonNull OnCarDataAvailableListener<Accelerometer> listener) {

    }

    @Override
    public void addGyroscopeListener(@UpdateRate int rate, @NonNull Executor executor,
            @NonNull OnCarDataAvailableListener<Gyroscope> listener) {
        executor.execute(()-> listener.onCarDataAvailable(new Gyroscope(
                CarValue.UNIMPLEMENTED_FLOAT_LIST)));
    }

    @Override
    public void removeGyroscopeListener(@NonNull OnCarDataAvailableListener<Gyroscope> listener) {

    }

    @Override
    public void addCompassListener(@UpdateRate int rate, @NonNull Executor executor,
            @NonNull OnCarDataAvailableListener<Compass> listener) {
        executor.execute(()-> listener.onCarDataAvailable(new Compass(
                CarValue.UNIMPLEMENTED_FLOAT_LIST)));
    }

    @Override
    public void removeCompassListener(@NonNull OnCarDataAvailableListener<Compass> listener) {

    }

    @Override
    public void addCarHardwareLocationListener(@UpdateRate int rate,
            @NonNull Executor executor,
            @NonNull OnCarDataAvailableListener<CarHardwareLocation> listener) {
        executor.execute(()-> listener.onCarDataAvailable(new CarHardwareLocation(
                CarHardwareLocation.UNIMPLEMENTED_LOCATION)));
    }

    @Override
    public void removeCarHardwareLocationListener(
            @NonNull OnCarDataAvailableListener<CarHardwareLocation> listener) {

    }
}