UNPKG
senti-rpi
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Senti Raspberry Pi (RPI) Core Modules
github.com/senti-platform/senti-rpi
senti-platform/senti-rpi
senti-rpi
/
lib
/
rpi-gputemp.js
13 lines
(10 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
raspiInfo =
require
(
'raspberry-info'
)
const
rpiDetect =
require
(
'./rpi-detect'
)
// Get GPU temperature
// 39.7°C
const
rpiGPUTemp
=
async
(
) => {
if
(
rpiDetect
()) {
return
await
raspiInfo.
getGPUTemperature
() } }
module
.
exports
= rpiGPUTemp