Skip to content

Commit c471f4e

Browse files
authored
Remove outdated comments about statistics (#1699)
1 parent 7c88be2 commit c471f4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/core/entity/sensor.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If specifying a device class, your sensor entity will need to also return the co
3434
| ---- | ---- | -----------
3535
| `SensorDeviceClass.APPARENT_POWER` | VA | Apparent power |
3636
| `SensorDeviceClass.AQI` | None | Air Quality Index
37-
| `SensorDeviceClass.ATMOSPHERIC_PRESSURE` | cbar, bar, hPa, inHg, kPa, mbar, Pa, psi | Atmospheric pressure, statistics will be stored in Pa.
37+
| `SensorDeviceClass.ATMOSPHERIC_PRESSURE` | cbar, bar, hPa, inHg, kPa, mbar, Pa, psi | Atmospheric pressure.
3838
| `SensorDeviceClass.BATTERY` | % | Percentage of battery that is left
3939
| `SensorDeviceClass.CARBON_DIOXIDE` | ppm | Concentration of carbon dioxide.
4040
| `SensorDeviceClass.CARBON_MONOXIDE` | ppm | Concentration of carbon monoxide.
@@ -44,10 +44,10 @@ If specifying a device class, your sensor entity will need to also return the co
4444
| `SensorDeviceClass.DATE` | | Date. Requires `native_value` to be a Python `datetime.date` object, or `None`.
4545
| `SensorDeviceClass.DISTANCE` | km, m, cm, mm, mi, yd, in | Generic distance
4646
| `SensorDeviceClass.DURATION` | d, h, min, s | Time period. Should not update only due to time passing. The device or service needs to give a new data point to update.
47-
| `SensorDeviceClass.ENERGY` | Wh, kWh, MWh, MJ, GJ | Energy, statistics will be stored in kWh. Represents _power_ over _time_. Not to be confused with `power`.
47+
| `SensorDeviceClass.ENERGY` | Wh, kWh, MWh, MJ, GJ | Energy. Represents _power_ over _time_. Not to be confused with `power`.
4848
| `SensorDeviceClass.ENUM` | | The sensor has a limited set of (non-numeric) states. The `options` property must be set to a list of possible states when using this device class.
4949
| `SensorDeviceClass.FREQUENCY` | Hz, kHz, MHz, GHz | Frequency
50-
| `SensorDeviceClass.GAS` | m³, ft³, CCF | Volume of gas, statistics will be stored in m³. Gas consumption measured as energy in kWh instead of a volume should be classified as energy.
50+
| `SensorDeviceClass.GAS` | m³, ft³, CCF | Volume of gas. Gas consumption measured as energy in kWh instead of a volume should be classified as energy.
5151
| `SensorDeviceClass.HUMIDITY` | % | Relative humidity
5252
| `SensorDeviceClass.ILLUMINANCE` | lx | Light level
5353
| `SensorDeviceClass.IRRADIANCE` | W/m², BTU/(h⋅ft²) | Irradiance
@@ -60,17 +60,17 @@ If specifying a device class, your sensor entity will need to also return the co
6060
| `SensorDeviceClass.PM1` | µg/m³ | Concentration of particulate matter less than 1 micrometer |
6161
| `SensorDeviceClass.PM25` | µg/m³ | Concentration of particulate matter less than 2.5 micrometers |
6262
| `SensorDeviceClass.PM10` | µg/m³ | Concentration of particulate matter less than 10 micrometers |
63-
| `SensorDeviceClass.POWER` | W, kW | Power, statistics will be stored in W.
63+
| `SensorDeviceClass.POWER` | W, kW | Power.
6464
| `SensorDeviceClass.POWER_FACTOR` | %, None | Power Factor
6565
| `SensorDeviceClass.PRECIPITATION` | cm, in, mm | Accumulated precipitation
6666
| `SensorDeviceClass.PRECIPITATION_INTENSITY` | in/d, in/h, mm/d, mm/h | Precipitation intensity
67-
| `SensorDeviceClass.PRESSURE` | cbar, bar, hPa, inHg, kPa, mbar, Pa, psi | Pressure, statistics will be stored in Pa.
67+
| `SensorDeviceClass.PRESSURE` | cbar, bar, hPa, inHg, kPa, mbar, Pa, psi | Pressure.
6868
| `SensorDeviceClass.REACTIVE_POWER` | var | Reactive power |
6969
| `SensorDeviceClass.SIGNAL_STRENGTH` | dB, dBm | Signal strength
7070
| `SensorDeviceClass.SOUND_PRESSURE` | dB, dBA | Sound pressure
7171
| `SensorDeviceClass.SPEED` | ft/s, in/d, in/h, km/h, kn, m/s, mph, mm/d | Generic speed
7272
| `SensorDeviceClass.SULPHUR_DIOXIDE` | µg/m³ | Concentration of sulphure dioxide |
73-
| `SensorDeviceClass.TEMPERATURE` | °C, °F, K | Temperature, statistics will be stored in °C.
73+
| `SensorDeviceClass.TEMPERATURE` | °C, °F, K | Temperature.
7474
| `SensorDeviceClass.TIMESTAMP` | | Timestamp. Requires `native_value` to return a Python `datetime.datetime` object, with time zone information, or `None`.
7575
| `SensorDeviceClass.VOLATILE_ORGANIC_COMPOUNDS` | µg/m³ | Concentration of volatile organic compounds
7676
| `SensorDeviceClass.VOLTAGE` | V, mV | Voltage

0 commit comments

Comments
 (0)