0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-03-01 17:21:21 +00:00
2024-07-06 13:02:07 +02:00

17 lines
344 B
Bash
Executable File

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
case $(dtsoc) in
amlogic,g12* | amlogic,sm1)
TEMP=$(cat /sys/devices/virtual/thermal/thermal_zone1/temp)
;;
*)
TEMP=$(cat /sys/class/hwmon/hwmon0/temp1_input)
;;
esac
TEMP="$(($TEMP / 1000))"
echo "${TEMP} C"