Libre hardware monitor linux

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Libre Hardware Monitor, home of the fork of Open Hardware Monitor

License

LibreHardwareMonitor/LibreHardwareMonitor

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Libre Hardware Monitor, a fork of Open Hardware Monitor, is free software that can monitor the temperature sensors, fan speeds, voltages, load and clock speeds of your computer.

Name .NET Build Status
LibreHardwareMonitor
Windows Forms based application that presents all data in a graphical interface
.NET Framework 4.7.2
LibreHardwareMonitorLib
Library that allows you to use all features in your own application
.NET Framework 4.7.2, .NET 6.0, and .NET 7.0
Читайте также:  Подсистема линукс для windows

You can read information from devices such as:

  • Motherboards
  • Intel and AMD processors
  • NVIDIA and AMD graphics cards
  • HDD, SSD and NVMe hard drives
  • Network cards

You can download the latest release here.

If you have a GitHub account, you can download nightly builds here. Otherwise, you can download the latest nightly build here.

How can I help improve it?

The LibreHardwareMonitor team welcomes feedback and contributions!
You can check if it works properly on your motherboard. For many manufacturers, the way of reading data differs a bit, so if you notice any inaccuracies, please send us a pull request. If you have any suggestions or improvements, don’t hesitate to create an issue.

Integrate the library in own application

Sample code

public class UpdateVisitor : IVisitor  public void VisitComputer(IComputer computer)  computer.Traverse(this); > public void VisitHardware(IHardware hardware)  hardware.Update(); foreach (IHardware subHardware in hardware.SubHardware) subHardware.Accept(this); > public void VisitSensor(ISensor sensor)  > public void VisitParameter(IParameter parameter)  > > public void Monitor()  Computer computer = new Computer  IsCpuEnabled = true, IsGpuEnabled = true, IsMemoryEnabled = true, IsMotherboardEnabled = true, IsControllerEnabled = true, IsNetworkEnabled = true, IsStorageEnabled = true > ; computer.Open(); computer.Accept(new UpdateVisitor()); foreach (IHardware hardware in computer.Hardware)  Console.WriteLine("Hardware: ", hardware.Name); foreach (IHardware subhardware in hardware.SubHardware)  Console.WriteLine("\tSubhardware: ", subhardware.Name); foreach (ISensor sensor in subhardware.Sensors)  Console.WriteLine("\t\tSensor: , value: ", sensor.Name, sensor.Value); > > foreach (ISensor sensor in hardware.Sensors)  Console.WriteLine("\tSensor: , value: ", sensor.Name, sensor.Value); > > computer.Close(); >

Administrator rights

Some sensors require administrator privileges to access the data. Restart your IDE with admin privileges, or add an app.manifest file to your project with requestedExecutionLevel on requireAdministrator.

LibreHardwareMonitor is free and open source software licensed under MPL 2.0. You can use it in private and commercial projects. Keep in mind that you must include a copy of the license in your project.

About

Libre Hardware Monitor, home of the fork of Open Hardware Monitor

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Libre Hardware Monitor, a fork of Open Hardware Monitor, is free software that can monitor the temperature sensors, fan speeds, voltages, load and clock speeds of your computer.

License

dorisoy/HardwareMonitor

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Libre Hardware Monitor, a fork of Open Hardware Monitor, is free software that can monitor the temperature sensors, fan speeds, voltages, load and clock speeds of your computer.

Name .NET Build Status
LibreHardwareMonitor
Windows Forms based application that presents all data in a graphical interface
.NET Framework 4.5.2
LibreHardwareMonitorLib
Library that allows you to use all features in your own application
.NET Framework 4.5.2,
.NET Standard 2.0,
.NET 5.0,
.NET 6.0

With the help of LibreHardwareMonitor you can read information from devices such as:

  • Motherboards
  • Intel and AMD processors
  • NVIDIA and AMD graphics cards
  • HDD, SSD and NVMe hard drives
  • Network cards

You can download the latest release here.
If you’re signed in to GitHub, you can also download the latest builds here. Click on a result and download Binaries under Artifacts.

How can I help improve it?

The LibreHardwareMonitor team welcomes feedback and contributions!
You can check if it works properly on your motherboard. For many manufacturers, the way of reading data differs a bit, so if you notice any inaccuracies, please send us a pull request. If you have any suggestions or improvements, don’t hesitate to create an issue.

What’s the easiest way to start?

LibreHardwareMonitor application: — How to compile the application

  1. Download the repository and compile ‘LibreHardwareMonitor’.
  2. You can start the net452\LibreHardwareMonitor.exe application immediately.

NuGet Package — How to use NuGet

  1. Add the LibreHardwareMonitorLib package to your application.
  2. References will be added automatically, you can use the sample code below.
  1. Download the repository and compile ‘LibreHardwareMonitorLib’.
  2. Add references to ‘LibreHardwareMonitorLib.dll’ and ‘HidSharp.dll’ in your project.
  3. In your main file, add namespace using LibreHardwareMonitor.Hardware;
  4. Now you can read most of the data from your devices.
/* * Example for .NET Framework */ public class UpdateVisitor : IVisitor  public void VisitComputer(IComputer computer)  computer.Traverse(this); > public void VisitHardware(IHardware hardware)  hardware.Update(); foreach (IHardware subHardware in hardware.SubHardware) subHardware.Accept(this); > public void VisitSensor(ISensor sensor)  > public void VisitParameter(IParameter parameter)  > > public void Monitor()  Computer computer = new Computer  IsCpuEnabled = true, IsGpuEnabled = true, IsMemoryEnabled = true, IsMotherboardEnabled = true, IsControllerEnabled = true, IsNetworkEnabled = true, IsStorageEnabled = true > ; computer.Open(); computer.Accept(new UpdateVisitor()); foreach (IHardware hardware in computer.Hardware)  Console.WriteLine("Hardware: ", hardware.Name); foreach (IHardware subhardware in hardware.SubHardware)  Console.WriteLine("\tSubhardware: ", subhardware.Name); foreach (ISensor sensor in subhardware.Sensors)  Console.WriteLine("\t\tSensor: , value: ", sensor.Name, sensor.Value); > > foreach (ISensor sensor in hardware.Sensors)  Console.WriteLine("\tSensor: , value: ", sensor.Name, sensor.Value); > > computer.Close(); >

LibreHardwareMonitor is free and open source software licensed under MPL 2.0. You can use it in private and commercial projects. Keep in mind that you must include a copy of the license in your project.

About

Libre Hardware Monitor, a fork of Open Hardware Monitor, is free software that can monitor the temperature sensors, fan speeds, voltages, load and clock speeds of your computer.

Источник

Оцените статью
Adblock
detector