mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 14:56:53 +00:00
Merge branch 'master' of https://github.com/balloob/home-assistant.io
This commit is contained in:
commit
06f63619d6
@ -21,6 +21,7 @@ This device tracker needs SNMP to be enabled on the router.
|
|||||||
OID examples:
|
OID examples:
|
||||||
- Microtik: 1.3.6.1.4.1.14988.1.1.1.2.1.1 (confirmed)
|
- Microtik: 1.3.6.1.4.1.14988.1.1.1.2.1.1 (confirmed)
|
||||||
- Aruba: 1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2 (untested)
|
- Aruba: 1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2 (untested)
|
||||||
|
- BiPAC 7800DXL: 1.3.6.1.2.1.17.7.1.2.2.1.1 (confirmed on firmware 2.32e)
|
||||||
|
|
||||||
To use the snmp platform in your installation, add the following to your `configuration.yaml` file:
|
To use the snmp platform in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -28,7 +29,7 @@ To use the snmp platform in your installation, add the following to your `config
|
|||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
device_tracker:
|
device_tracker:
|
||||||
platform: snmp
|
platform: snmp
|
||||||
hosts: 192.168.1.1
|
host: 192.168.1.1
|
||||||
community: public
|
community: public
|
||||||
baseoid: 1.3.6.1.4.1.14988.1.1.1.2.1.1
|
baseoid: 1.3.6.1.4.1.14988.1.1.1.2.1.1
|
||||||
```
|
```
|
||||||
|
42
source/_cookbook/send_a_reminder.markdown
Normal file
42
source/_cookbook/send_a_reminder.markdown
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Send a reminder"
|
||||||
|
description: "Send a reminder"
|
||||||
|
date: 2015-12-16 08:00
|
||||||
|
sidebar: false
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
---
|
||||||
|
|
||||||
|
#### {% linkable_title Send a reminder %}
|
||||||
|
Always forget to eat lunch? Let Home Assistant send you a reminder.
|
||||||
|
|
||||||
|
Add a [notify platform](/components/notify/) of your choice
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
notify:
|
||||||
|
- platform: xmpp
|
||||||
|
name: jabber
|
||||||
|
sender: YOUR_JID
|
||||||
|
password: YOUR_JABBER_ACCOUNT_PASSWORD
|
||||||
|
recipient: YOUR_RECIPIENT
|
||||||
|
```
|
||||||
|
|
||||||
|
and automation part to your `configuration.yaml` file.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
automation:
|
||||||
|
- alias: Send message at a given time
|
||||||
|
trigger:
|
||||||
|
platform: time
|
||||||
|
hours: 12
|
||||||
|
minutes: 15
|
||||||
|
seconds: 0
|
||||||
|
action:
|
||||||
|
service: notify.jabber
|
||||||
|
data:
|
||||||
|
message: 'Time for lunch'
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user