mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-08 01:46:50 +00:00
Update Axis component configuration variable (#6595)
Update style of Axis component documentation to follow new configuration variables description.
This commit is contained in:
parent
be03e68f08
commit
a64e0bf9b6
@ -30,24 +30,62 @@ axis:
|
|||||||
- camera
|
- camera
|
||||||
```
|
```
|
||||||
|
|
||||||
## {% linkable_title Configuration variables %}
|
{% configuration %}
|
||||||
|
device:
|
||||||
- **device** (*Required*): Unique name
|
description: A unique name
|
||||||
- **host** (*Required*): The IP address to your Axis device.
|
required: true
|
||||||
- **username** (*Optional*): The username to your Axis device. Default 'root'.
|
type: string
|
||||||
- **password** (*Optional*): The password to your Axis device. Default 'pass'.
|
host:
|
||||||
- **trigger_time** (*Optional*): Minimum time (in seconds) a sensor should keep its positive value. Default 0.
|
description: The IP address to your Axis device.
|
||||||
- **port** (*Optional*): Configure port web server of device is accessible from. Default 80.
|
required: true
|
||||||
- **location** (*Optional*): Physical location of your Axis device. Default not set.
|
type: string
|
||||||
- **include** (*Required*): This cannot be empty else there would be no use adding the device at all.
|
username:
|
||||||
- **camera**: Stream MJPEG video to Home Assistant.
|
description: The username to your Axis device.
|
||||||
- **motion**: The built-in motion detection in Axis cameras.
|
required: false
|
||||||
- **vmd3**: ACAP Motion Detection app which has better algorithms for motion detection.
|
default: root
|
||||||
- **pir**: PIR sensor that can trigger on a motion.
|
type: string
|
||||||
- **sound**: Sound detector.
|
password:
|
||||||
- **daynight**: Certain cameras have day/night mode if they have built-in IR lights.
|
description: The password to your Axis device.
|
||||||
- **tampering**: Signals when camera believes that it has been tampered with.
|
required: false
|
||||||
- **input**: Trigger on whatever you have connected to device input port.
|
default: pass
|
||||||
|
type: string
|
||||||
|
trigger_time:
|
||||||
|
description: Minimum time (in seconds) a sensor should keep its positive value.
|
||||||
|
required: false
|
||||||
|
default: 0
|
||||||
|
type: integer
|
||||||
|
port:
|
||||||
|
description: Configure port web server of device is accessible from.
|
||||||
|
required: false
|
||||||
|
default: 80
|
||||||
|
type: integer
|
||||||
|
location:
|
||||||
|
description: Physical location of your Axis device.
|
||||||
|
required: false
|
||||||
|
default: not set
|
||||||
|
type: string
|
||||||
|
include:
|
||||||
|
description: This cannot be empty else there would be no use adding the device at all.
|
||||||
|
required: true
|
||||||
|
type: map
|
||||||
|
keys:
|
||||||
|
camera:
|
||||||
|
description: Stream MJPEG video to Home Assistant.
|
||||||
|
motion:
|
||||||
|
description: The built-in motion detection in Axis cameras.
|
||||||
|
vmd3:
|
||||||
|
description: ACAP Motion Detection app which has better algorithms for motion detection.
|
||||||
|
pir:
|
||||||
|
description: PIR sensor that can trigger on a motion.
|
||||||
|
sound:
|
||||||
|
description: Sound detector.
|
||||||
|
daynight:
|
||||||
|
description: Certain cameras have day/night mode if they have built-in IR lights.
|
||||||
|
tampering:
|
||||||
|
description: Signals when camera believes that it has been tampered with.
|
||||||
|
input:
|
||||||
|
description: Trigger on whatever you have connected to device input port.
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
A full configuration example could look like this:
|
A full configuration example could look like this:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user