@Homoran sagte in RPI-Monitor, keine CPU Frequenz:
wenn sich da mittlerweile nichts geändert hast muss in der io-package.json ab Zeile77
"cpu": { "cpu_frequency": { "command": "cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq", "regexp": "(.*)", "post": "$1/1000" },
der Command in "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq" getauscht werden
Um Kompatibel zu bleiben zu den Systemen wo cpunifo_cur_freq noch geht, hab ich
"command": "cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq"durch
"command" :"test -r /sys/devices/system/cpu/cpufreq/policy0/cpuinfo_cur_frew && cat /sys/devices/system/cpu/cpufreq/policy0/cpuinfo_cur_freq || cat /sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq"ersetzt.