diff --git a/bundles/org.openhab.binding.systeminfo/README.md b/bundles/org.openhab.binding.systeminfo/README.md index bc3abf59f..1d01a923a 100644 --- a/bundles/org.openhab.binding.systeminfo/README.md +++ b/bundles/org.openhab.binding.systeminfo/README.md @@ -118,22 +118,22 @@ The binding introduces the following channels: | load15 | Load for the last 15 minutes | Number | Medium | True | | threads | Number of threads currently running or for the process | Number | Medium | True | | path | The full path of the process | String | Low | False | -| uptime | System uptime (time after start) in minutes | Number | Medium | True | +| uptime | System uptime (time after start) in minutes | Number:Time | Medium | True | | name | Name of the device or process | String | Low | False | -| available | Available size in MB | Number | High | False | -| used | Used size in MB | Number | High | False | -| total | Total size in MB | Number | Low | False | -| availablePercent | Available size in % | Number | High | False | -| usedPercent | Used size in % | Number | High | False | +| available | Available size | Number:DataAmount | High | False | +| used | Used size | Number:DataAmount | High | False | +| total | Total size | Number:DataAmount | Low | False | +| availablePercent | Available size in % | Number:Dimensionless| High | False | +| usedPercent | Used size in % | Number:Dimensionless| High | False | | model | The model of the device | String | Low | True | | serial | The serial number of the device | String | Low | True | | description | Description of the device | String | Low | True | | type | Storage type | String | Low | True | -| cpuTemp | CPU Temperature in degrees Celsius | Number | High | True | -| cpuVoltage | CPU Voltage in V | Number | Medium | True | +| cpuTemp | CPU Temperature in degrees Celsius | Number:Temperature | High | True | +| cpuVoltage | CPU Voltage | Number:ElectricPotential| Medium | True | | fanSpeed | Fan speed in rpm | Number | Medium | True | -| remainingTime | Remaining time in minutes | Number | Medium | False | -| remainingCapacity | Remaining capacity in % | Number | Medium | False | +| remainingTime | Remaining time in minutes | Number:Time | Medium | False | +| remainingCapacity | Remaining capacity in % | Number:Dimensionless| Medium | False | | information | Product, manufacturer, SN, width and height of the display in cm | String | Low | True | | ip | Host IP address of the network | String | Low | False | | mac | MAC address | String | Low | True | @@ -141,9 +141,9 @@ The binding introduces the following channels: | networkDisplayName | The display name of the network | String | Low | False | | packetsSent | Number of packets sent | Number | Medium | True | | packetsReceived | Number of packets received | Number | Medium | True | -| dataSent | Data sent in MB | Number | Medium | True | -| dataReceived | Data received in MB | Number | Medium | True | -| availableHeap | How many bytes are free out of the currently committed heap | Number:DataAmount | Medium | True | +| dataSent | Volume of data sent | Number:DataAmount | Medium | True | +| dataReceived | Volume of data received | Number:DataAmount | Medium | True | +| availableHeap | How much space is available in the currently committed heap | Number:DataAmount | Medium | True | | usedHeapPercent | How much of the MAX heap size is actually used in % | Number:Dimensionless| Medium | False | ## Channel configuration @@ -195,80 +195,80 @@ Items: ``` /* Network information*/ -String Network_AdapterName "Adapter name" { channel="systeminfo:computer:work:network#networkDisplayName" } -String Network_Name "Name" { channel="systeminfo:computer:work:network#networkName" } -String Network_IP "IP address" { channel="systeminfo:computer:work:network#ip" } -String Network_Mac "Mac address" { channel="systeminfo:computer:work:network#mac" } -Number Network_DataSent "Data sent" { channel="systeminfo:computer:work:network#dataSent" } -Number Network_DataReceived "Data received" { channel="systeminfo:computer:work:network#dataReceived" } -Number Network_PacketsSent "Packets sent" { channel="systeminfo:computer:work:network#packetsSent" } -Number Network_PacketsReceived "Packets received" { channel="systeminfo:computer:work:network#packetsReceived" } +String Network_AdapterName "Adapter name" { channel="systeminfo:computer:work:network#networkDisplayName" } +String Network_Name "Name" { channel="systeminfo:computer:work:network#networkName" } +String Network_IP "IP address" { channel="systeminfo:computer:work:network#ip" } +String Network_Mac "Mac address" { channel="systeminfo:computer:work:network#mac" } +Number Network_DataSent "Data sent" { channel="systeminfo:computer:work:network#dataSent" } +Number Network_DataReceived "Data received" { channel="systeminfo:computer:work:network#dataReceived" } +Number Network_PacketsSent "Packets sent" { channel="systeminfo:computer:work:network#packetsSent" } +Number Network_PacketsReceived "Packets received" { channel="systeminfo:computer:work:network#packetsReceived" } /* CPU information*/ -String CPU_Name "Name" { channel="systeminfo:computer:work:cpu#name" } -String CPU_Description "Description" { channel="systeminfo:computer:work:cpu#description" } -Number CPU_Load "CPU Load" { channel="systeminfo:computer:work:cpu#load" } -Number CPU_Load1 "Load (1 min)" { channel="systeminfo:computer:work:cpu#load1" } -Number CPU_Load5 "Load (5 min)" { channel="systeminfo:computer:work:cpu#load5" } -Number CPU_Load15 "Load (15 min)" { channel="systeminfo:computer:work:cpu#load15" } -Number CPU_Threads "Threads" { channel="systeminfo:computer:work:cpu#threads" } -Number CPU_Uptime "Uptime"