Joshman1412
Joshman1412
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
i dont think it can find it although it shows up in hw monitor but not librehardware monitor
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
Hardware: ASUS PRIME B550M-A WIFI II Subhardware: Nuvoton NCT6798D Sensor: Fan #1, Type: Control, Value: 39.607845 Sensor: Fan #2, Type: Control, Value: 39.607845 Sensor: Fan #3, Type: Control, Value: 67.84314 Sensor: Fan #4, Type: Control, Value: 60 Sensor: Fan #5, Type: Control, Value: 60 Sensor: Fan #6, Type: Control, Value: 100 Sensor: Fan #7, Type: Control, Value: 100 Sensor: Vcore, Type: Voltage, Value: 0.504 Sensor: Voltage #2, Type: Voltage, Value: 0.99200004 Sensor: AVCC, Type: Voltage, Value: 3.3920002 Sensor: +3.3V, Type: Voltage, Value: 3.2800002 Sensor: Voltage #5, Type: Voltage, Value: 1.008 Sensor: Voltage #6, Type: Voltage, Value: 0.808 Sensor: Voltage #7, Type: Voltage, Value: 0.99200004 Sensor: 3VSB, Type: Voltage, Value: 3.3920002 Sensor: VBat, Type: Voltage, Value: 3.328 Sensor: VTT, Type: Voltage, Value: 0.90400004 Sensor: Voltage #11, Type: Voltage, Value: 0.4 Sensor: Voltage #12, Type: Voltage, Value: 0.4 Sensor: Voltage #13, Type: Voltage, Value: 1.0400001 Sensor: Voltage #14, Type: Voltage, Value: 0.984 Sensor: Voltage #15, Type: Voltage, Value: 0.984 Sensor: Temperature #1, Type: Temperature, Value: 38.5 Sensor: Temperature #2, Type: Temperature, Value: 36 Sensor: Temperature #3, Type: Temperature, Value: 26.5 Sensor: Temperature #4, Type: Temperature, Value: 36 Sensor: Temperature #5, Type: Temperature, Value: 36 Sensor: Temperature #6, Type: Temperature, Value: 27 Sensor: Fan #1, Type: Fan, Value: 1245.3875 Sensor: Fan #2, Type: Fan, Value: 1104.7463 Sensor: Fan #3, Type: Fan, Value: 0 Sensor: Fan #4, Type: Fan, Value: 0 Sensor: Fan #5, Type: Fan, Value: 0 Sensor: Fan #6, Type: Fan, Value: 0 Sensor: Fan #7, Type: Fan, Value: 0
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
debug doesnt exist
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
that gives me errors
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
where do i see the output because in output window in visual studio theres nothing about it
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
the whole part ig it just isnt getting me the voltage
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
i dont know if it finds it
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
to find the sensor
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
it just gives me 0 its a winsform program so i dont know how view the output of this
private void LogAllSensors()
{
foreach (var hardware in computer.Hardware)
{
hardware.Update(); // Update hardware data
Console.WriteLine($"Hardware: {hardware.Name}");

foreach (var sensor in hardware.Sensors)
{
Console.WriteLine($"\tSensor: {sensor.Name}, Type: {sensor.SensorType}, Value: {sensor.Value}");
}

foreach (var subHardware in hardware.SubHardware)
{
subHardware.Update();
Console.WriteLine($"\tSubhardware: {subHardware.Name}");

foreach (var sensor in subHardware.Sensors)
{
Console.WriteLine($"\t\tSensor: {sensor.Name}, Type: {sensor.SensorType}, Value: {sensor.Value}");
}
}
}
}
private void LogAllSensors()
{
foreach (var hardware in computer.Hardware)
{
hardware.Update(); // Update hardware data
Console.WriteLine($"Hardware: {hardware.Name}");

foreach (var sensor in hardware.Sensors)
{
Console.WriteLine($"\tSensor: {sensor.Name}, Type: {sensor.SensorType}, Value: {sensor.Value}");
}

foreach (var subHardware in hardware.SubHardware)
{
subHardware.Update();
Console.WriteLine($"\tSubhardware: {subHardware.Name}");

foreach (var sensor in subHardware.Sensors)
{
Console.WriteLine($"\t\tSensor: {sensor.Name}, Type: {sensor.SensorType}, Value: {sensor.Value}");
}
}
}
}
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
private float GetVoltage()
{
foreach (var hardware in computer.Hardware)
{
if (hardware.HardwareType == HardwareType.Motherboard)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == SensorType.Voltage)
{
return sensor.Value ?? 0;
}
}
}
}
return 0; // Return 0 if no sensor found
}
}
private float GetVoltage()
{
foreach (var hardware in computer.Hardware)
{
if (hardware.HardwareType == HardwareType.Motherboard)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == SensorType.Voltage)
{
return sensor.Value ?? 0;
}
}
}
}
return 0; // Return 0 if no sensor found
}
}
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
@canton7 do you know why this could be
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
ok with admin it gets my cpu temps but not my 12v rail
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
No do I just go on the GitHub page for that
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
Because I get 0 degrees cpu temp and 0 12v rail voltage
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
34 replies
CC#
Created by Joshman1412 on 11/17/2024 in #help
does anyone know why my program cant find my cpu temps or my motherboard 12v rail readings
@❤RieBi&❤ its too long for that
34 replies
CC#
Created by Joshman1412 on 11/16/2024 in #help
✅ Does anyone know how to fix the error below
ok thank you so much
176 replies
CC#
Created by Joshman1412 on 11/16/2024 in #help
✅ Does anyone know how to fix the error below
ok thank you so much you have been so helpful I really really appreciate it
176 replies
CC#
Created by Joshman1412 on 11/16/2024 in #help
✅ Does anyone know how to fix the error below
ok
176 replies
CC#
Created by Joshman1412 on 11/16/2024 in #help
✅ Does anyone know how to fix the error below
ok
176 replies