Initial commit
This commit is contained in:
23
include/batteryinfo.h
Normal file
23
include/batteryinfo.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
|
||||
namespace dlore
|
||||
{
|
||||
struct
|
||||
{
|
||||
std::string Manufacturer;
|
||||
std::string Model;
|
||||
std::string Technology;
|
||||
unsigned int CellSeriesCount;
|
||||
unsigned int Capacity;
|
||||
float Vnow;
|
||||
float Vmin;
|
||||
unsigned int ChargeNow;
|
||||
unsigned int ChargeFull;
|
||||
unsigned int ChargeFullDesign;
|
||||
} typedef BatteryInfo;
|
||||
|
||||
BatteryInfo GetBatteryInfo(std::filesystem::path classPath);
|
||||
}
|
Reference in New Issue
Block a user