File tree 1 file changed +33
-0
lines changed 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " Input Slider"
4
+ description : " Instructions how to integrate the Input Slider component into Home Assistant."
5
+ date : 2016-03-15 06:00
6
+ sidebar : true
7
+ comments : false
8
+ sharing : true
9
+ footer : true
10
+ logo : home-assistant.png
11
+ ha_category : Automation
12
+ ---
13
+
14
+ The ` input_slider ` component allows the user to define values that can be controlled via the frontend and can be used within conditions of automation.
15
+
16
+ ``` yaml
17
+ # Example configuration.yaml entry
18
+ input_slider :
19
+ slider1 :
20
+ name : Slider 1
21
+ initial : 30
22
+ min : -20
23
+ max : 35
24
+ ` ` `
25
+
26
+ Configuration variables:
27
+
28
+ - **[alias]** (*Required*): Alias for the slider input.
29
+ - **name** (*Optional*): Friendly name of the slider input.
30
+ - **initial** (*Optional*): Initial value when Home Assistant starts.
31
+ - **min** (*Optional*): Minimum value for the slider.
32
+ - **max** (*Optional*): Maximum value for the slider.
33
+
You can’t perform that action at this time.
0 commit comments