mirror of
https://github.com/AlchemillaHQ/Sylve.git
synced 2026-06-26 02:45:10 +03:00
23 lines
360 B
Go
23 lines
360 B
Go
package smart
|
|
|
|
type Attribute struct {
|
|
ID uint32
|
|
Name string
|
|
Value int
|
|
Worst int
|
|
Threshold int
|
|
RawValue uint64
|
|
RawBytes []byte
|
|
TextValue string
|
|
IsText bool
|
|
}
|
|
|
|
type DeviceInfo struct {
|
|
Device string
|
|
Protocol string
|
|
Temperature int
|
|
PowerOnHours int
|
|
PowerCycleCount int
|
|
Attributes []Attribute
|
|
}
|