From 73a8cc662cba8e2de51d20e03e32b23a73075469 Mon Sep 17 00:00:00 2001 From: ferdinand Date: Tue, 16 Jul 2019 10:06:03 +0200 Subject: [PATCH] Update mitemp_bt component documentation (#9859) * Update mitemp_bt component documentation Fixed the full example and added the default values for force_update and median. * :pencil2: Tweak --- source/_components/mitemp_bt.markdown | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/_components/mitemp_bt.markdown b/source/_components/mitemp_bt.markdown index 46d44d831cf..593e49531dc 100644 --- a/source/_components/mitemp_bt.markdown +++ b/source/_components/mitemp_bt.markdown @@ -81,10 +81,12 @@ name: force_update: description: Sends update events even if the value hasn't changed. required: false + default: false type: boolean median: description: "Sometimes the sensor measurements show spikes. Using this parameter, the poller will report the median of the last 3 (you can also use larger values) measurements. This filters out single spikes. Median: 5 will also filter double spikes. If you never have problems with spikes, `median: 1` will work fine." required: false + default: 3 type: integer timeout: description: Define the timeout value in seconds when polling. @@ -121,7 +123,8 @@ sensor: - platform: mitemp_bt mac: 'xx:xx:xx:xx:xx:xx' name: Kids Room Temp - force_up median: 3 + force_update: true + median: 1 monitored_conditions: - temperature - humidity