From 8c544a89c9526825d37c2dc869b7d3b56d833699 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Oct 2015 21:25:01 +0200 Subject: [PATCH] Remove configuration details --- .../components/sensor/command_sensor.py | 35 ------------------- 1 file changed, 35 deletions(-) diff --git a/homeassistant/components/sensor/command_sensor.py b/homeassistant/components/sensor/command_sensor.py index a6e6c19fdb8..fc651fcc157 100644 --- a/homeassistant/components/sensor/command_sensor.py +++ b/homeassistant/components/sensor/command_sensor.py @@ -3,41 +3,6 @@ homeassistant.components.sensor.command_sensor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Allows to configure custom shell commands to turn a value for a sensor. -Configuration: - -To use the command_line sensor you will need to add something like the -following to your configuration.yaml file. - -sensor: - platform: command_sensor - name: "Command sensor" - command: sensor_command - unit_of_measurement: "°C" - correction_factor: 0.0001 - decimal_places: 0 - -Variables: - -name -*Optional -Name of the command sensor. - -command -*Required -The action to take to get the value. - -unit_of_measurement -*Optional -Defines the units of measurement of the sensor, if any. - -correction_factor -*Optional -A float value to do some basic calculations. - -decimal_places -*Optional -Number of decimal places of the value. Default is 0. - For more details about this platform, please refer to the documentation at https://home-assistant.io/components/sensor.command_sensor.html """