aboutsummaryrefslogtreecommitdiff
path: root/cmhw
diff options
context:
space:
mode:
authorluca020400 <luca.stefani.ge1@gmail.com>2015-12-24 23:38:23 +0100
committerLuK1337 <priv.luk@gmail.com>2016-01-27 16:48:46 +0100
commit3cfc3acbb94c2909dd656a1e11cf2c5d9f7207c4 (patch)
tree2aecbafdf7fecb5626bdc14339ef9ad1169abaad /cmhw
parent74a8559762febadf95b75c67578a1291afd47c9a (diff)
msm8916-common/cmhw: Add vibrator module
Diffstat (limited to 'cmhw')
-rw-r--r--cmhw/org/cyanogenmod/hardware/VibratorHW.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/cmhw/org/cyanogenmod/hardware/VibratorHW.java b/cmhw/org/cyanogenmod/hardware/VibratorHW.java
new file mode 100644
index 0000000..00bdbc8
--- /dev/null
+++ b/cmhw/org/cyanogenmod/hardware/VibratorHW.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2015 The CyanogenMod 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 org.cyanogenmod.hardware;
+
+import org.cyanogenmod.hardware.util.FileUtils;
+
+import java.io.File;
+
+public class VibratorHW {
+
+ private static String AMP_PATH = "/sys/devices/virtual/timed_output/vibrator/vtg_level";
+
+ public static boolean isSupported() {
+ File file = new File(AMP_PATH);
+ return file.exists();
+ }
+
+ public static int getMaxIntensity() {
+ return 31;
+ }
+ public static int getMinIntensity() {
+ return 12;
+ }
+ public static int getWarningThreshold() {
+ return -1;
+ }
+ public static int getCurIntensity() {
+ return Integer.parseInt(FileUtils.readOneLine(AMP_PATH));
+ }
+ public static int getDefaultIntensity() {
+ return 28;
+ }
+ public static boolean setIntensity(int intensity) {
+ return FileUtils.writeLine(AMP_PATH, String.valueOf(intensity));
+ }
+}