jSensors icon indicating copy to clipboard operation
jSensors copied to clipboard

Monitorize all the hardware sensors of your PC using Java

Results 17 jSensors issues
Sort by recently updated
recently updated
newest added

```kotlin fun main() { val components = JSensors.get.components() val cpus = components.cpus if (cpus != null) { for (cpu in cpus) { println("Found CPU component: " + cpu.name) if (cpu.sensors...

how do i get RPM from the fan connected to cpu fan? thank you.

I execute this: `Components components = JSensors.get.components(); List cpus = components.cpus; if (cpus != null) { for (final Cpu cpu : cpus) { System.out.println("Found CPU component: " + cpu.name); if...

I want to monitor hardware resources and output the values (temp, fan, load) onto a screen in realtime, which means fresh values at least every second. But I am wondering...

It detects the cpu and gpu names but not showing gpu temperature. cpu - i5 11400 gpu - Rx 6400 works fine with cpu . i have even added new...

jSensors can't find any temperature data for a Ryzen 5 3600, usages are reported but sensor data is not found even when jSensors is run as admin with this CPU

### Changes from 0.9.3 - Added support for 10th generation Intel Core processors based on Comet Lake-S. - Added AMD family 15h model 60h and 70h CPU support. - Added...

JAR file with version 2.2.1 is not under provided url. Change url to one given in pull request or add it under already provided url

I'm running a basic piece of code to get the GPU's temps, but it never finishes running, here is the code: ```java import java.util.Date; import java.util.List; import com.profesorfalken.jsensors.JSensors; import com.profesorfalken.jsensors.model.components.Components;...