sm8450-common: sensors: Add aod notifier

Change-Id: I2ba35d7b7db4e6922d83f041497fe66bf52124cb
This commit is contained in:
Arian
2024-07-27 16:06:00 +02:00
rodzic 2f0a1200a2
commit 9148fcdc2c
7 zmienionych plików z 180 dodań i 0 usunięć

Wyświetl plik

@@ -0,0 +1,18 @@
/*
* Copyright (C) 2024 The LineageOS Project
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "SensorNotifier.h"
class AodNotifier : public SensorNotifier {
public:
AodNotifier(sp<ISensorManager> manager);
~AodNotifier();
protected:
void notify();
};