You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/binary_sensor.flic.markdown
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,14 @@ Configuration variables:
31
31
- **port** (*Optional*): The port of the flic service. (default: `5551`)
32
32
- **discovery** (*Optional*): If `true`, the component is configured to constantly scan for new buttons. (default: `true`)
33
33
- **ignored_click_types**: List of click types whose occurrence should not trigger and `flic_click` event.
34
-
34
+
- **timeout** (*Optional*): Maximum time in seconds an event can be queued locally on a button before discarding the event. (default: `3`)
35
35
36
36
#### {% linkable_title Discovery %}
37
37
38
38
If discovery is enabled, you can add a new button by pressing it for at least 7s. The button will be paired with the flic service and added to Home Assistant. Otherwise, you have to manually pair it with the flic service. The Home Assistant platform will not scan for new buttons and will only connect to buttons already paired.
39
39
40
+
#### {% linkable_title Timeout %}
41
+
+When the flic button is triggered while disconnected from flic service, it will queue all events and try to connect and transmit them as soon as possible. The timeout variable can be used to stop events from triggering if too much time passed between the action and the notification in Home Assistant.
40
42
41
43
#### {% linkable_title Events %}
42
44
@@ -62,7 +64,8 @@ Event data:
62
64
- **button_name**: The name of the button, that triggered the event.
63
65
- **button_address**: The bluetooth address of the button, that triggered the event.
64
66
- **click_type**: The type of click. Possible values are `single`, `double` and `hold`.
65
-
67
+
- **queued_time**: The amount of time this event was queued on the button, in seconds.
66
68
67
69
##### {% linkable_title Ignoring Click Types %}
70
+
68
71
For some purposes it might make sense to exclude a specific click type from triggering click events. For example when ignoring double clicks, pressing the button twice fast results in two `single` instead of a `double` click event. This is very useful for applications where you want to click fast.
description: "Offers a web framework to serve files."
5
+
date: 2015-12-06 21:35
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: home-assistant.png
11
+
ha_category: "Other"
12
+
---
13
+
14
+
The `http` component serves all files and data required for the Home Assistant frontend. You only need to add this to your configuration file if you want to change any of the default settings.
15
+
16
+
<pclass='note warning'>
17
+
It's HIGHLY recommended that you set the `api_password`, especially if you are planning to expose your installation to the internet.
Copy file name to clipboardExpand all lines: source/_components/sensor.systemmonitor.markdown
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,3 +58,33 @@ The table contains types and their argument to use in your `configuration.yaml`
58
58
| last_boot | |
59
59
| since_last_boot | |
60
60
61
+
## {% linkable_title Linux specific %}
62
+
63
+
To retrieve all available network interfaces on a Linux System, execute the `ifconfig` command.
64
+
65
+
```bash
66
+
$ ifconfig -a | sed 's/[ \t].*//;/^$/d'
67
+
```
68
+
69
+
## {% linkable_title Windows specific %}
70
+
71
+
When running this platform on Microsoft Windows, Typically, the default interface would be called `Local Area Connection`, so your configuration might look like:
72
+
73
+
```yaml
74
+
sensor:
75
+
- platform: systemmonitor
76
+
resources:
77
+
- type: network_in
78
+
arg: 'Local Area Connection'
79
+
```
80
+
81
+
If you need to use some other interface, open a commandline prompt and type `ipconfig` to list all interface names. For example a wireless connection output from `ifconfig` might look like:
82
+
83
+
```bash
84
+
Wireless LAN adapter Wireless Network Connection:
85
+
86
+
Media State . . . . . . . . . . . : Media disconnected
Copy file name to clipboardExpand all lines: source/getting-started/z-wave.markdown
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ Configuration variables:
81
81
- **ignored** (*Optional*): Ignore this entitiy completely. It won't be shown in the Web Interface and no events are generated for it.
82
82
- **refresh_value** (*Optional*): Enable refreshing of the node value. Only light component uses this. Defaults to 2 second delay.
83
83
- **delay** (*Optional*): Specify the delay to wait for refresh of node value if you want other than 2 seconds.
84
+
- **debug** (*Optional*): Print verbose z-wave info to log. Defaults to False.
84
85
85
86
To find the path of your Z-Wave USB stick or module, run:
86
87
@@ -226,16 +227,17 @@ The `zwave` component exposes multiple services to help maintain the network.
226
227
| ------- | ----------- |
227
228
| add_node | Put the Z-Wave controller in inclusion mode. Allows one to add a new device to the Z-Wave network.|
228
229
| add_node_secure | Put the Z-Wave controller in secure inclusion mode. Allows one to add a new device with secure communications to the Z-Wave network. |
229
-
| change_association | Add or remove an association in the Z-Wave network
230
230
| cancel_command | Cancels a running Z-Wave command. If you have started a add_node or remove_node command, and decides you are not going to do it, then this must be used to stop the inclusion/exclusion command. |
231
+
| change_association | Add or remove an association in the Z-Wave network |
231
232
| heal_network | Tells the controller to "heal" the Z-Wave network. Basically asks the nodes to tell the controller all of their neighbors so the controller can refigure out optimal routing. |
233
+
| print_config_parameter | Prints Z-wave node's config parameter value to the log.
232
234
| remove_node | Put the Z-Wave controller in exclusion mode. Allows one to remove a device from the Z-Wave network.|
235
+
| rename_node | Sets a node's name. Requires an `entity_id` and `name` field. |
233
236
| set_config_parameter | Let's the user set a config parameter to a node.
234
237
| soft_reset | Tells the controller to do a "soft reset". This is not supposed to lose any data, but different controllers can behave differently to a "soft reset" command.|
235
238
| start_network | Starts the Z-Wave network.|
236
239
| stop_network | Stops the Z-Wave network.|
237
240
| test_network | Tells the controller to send no-op commands to each node and measure the time for a response. In theory, this can also bring back nodes which have been marked "presumed dead".|
238
-
| rename_node | Sets a node's name. Requires an `entity_id` and `name` field. |
239
241
240
242
The `soft_reset` and `heal_network` commands can be used as part of an automation script to help keep a Z-Wave network running reliably as shown in the example below. By default, Home Assistant will run a `heal_network` at midnight. This is a configuration option for the `zwave` component, the option defaults to `true` but can be disabled by setting `auto_heal` to false. Using the `soft_reset` function with some Z-Wave controllers can cause the Z-Wave network to hang. If you're having issues with your Z-Wave network try disabling this automation.
0 commit comments