Kindle Scribe: improve gyro detection, replace accel with acc keyword (#11696)

Fixes #11691.
This commit is contained in:
mergen3107
2024-04-20 16:30:04 -04:00
committed by GitHub
parent bfc84795c8
commit caea0e8fb2

View File

@@ -1429,7 +1429,7 @@ function KindleScribe:init()
end
end
-- Get accelerometer device
local std_out = io.popen("grep -A4 'accel' /proc/bus/input/devices | grep -o 'event[0-9]'", "r")
local std_out = io.popen("grep -A4 'acc' /proc/bus/input/devices | grep -o 'event[0-9]'", "r")
if std_out then
local gyro_dev = std_out:read("*line")
std_out:close()