From b1feacea84ab13a85d71768cf2adb691f50530c0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 Oct 2015 22:47:51 +0200 Subject: [PATCH] Add new variables --- source/components/sensor.mysensors.markdown | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/source/components/sensor.mysensors.markdown b/source/components/sensor.mysensors.markdown index 9eeff3a0d5b..d7f791394c0 100644 --- a/source/components/sensor.mysensors.markdown +++ b/source/components/sensor.mysensors.markdown @@ -23,8 +23,15 @@ sensor: Configuration variables: -- **port** (*Required*): The port where your board is connected to your Home Assistant host. If you are using an original Arduino the port will be named `ttyACM*`. The exact number can be determined with `ls /dev/ttyACM*`. +- **port** (*Required*): The port where your board is connected to your Home Assistant host. +- **debug** (*Optional*): Enable or disable verbose debug logging. +- **persistence** (*Optional*): Enable or disable local persistence of sensor information. If this is disabled, then each sensor will need to send presentation messages after Home Assistant starts. +- **persistence_file** (*Optional*): Path to a file to save sensor information. The file extension determines the file type. Currently supported file types are 'pickle' and 'json'. +- **version** (*Optional*): Specifies the MySensors protocol version to use (ex. 1.4, 1.5). + +If you are using an original Arduino the port will be named `ttyACM*`. The exact number can be determined with the command shown below. ```bash ls /dev/ttyACM* ``` +