diff --git a/atom.xml b/atom.xml index b3a369531d..a02dc33eaa 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
Configuration variables:
@@ -109,6 +110,7 @@ negative number of minutes your timezone is ahead/behind UTC time.The yweather
platform uses Yahoo Weather as an source for current meteorological data. The forecast
will show you the condition for 5 days, 0 is the current day. You can use only weather
, temp_min
, and temp_max
with forecast.
The yweather
platform uses Yahoo Weather as an source for current meteorological data. The forecast
will show you the condition for 5 days, 0 is the current day. You can use only weather
, temp_min
, and temp_max
with forecast. It’s important to note that a yweather sensor will only show ONE days forecast at a time so to show multiple days forecasts, you will need to use the ‘name:’ option and give each sensor a unique name.
Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2,000 signed calls per day.
@@ -106,6 +106,35 @@ Use of the Yahoo Weather API should not exceed reasonable request volume. Access +Example of forecast using multiple days. In example, first sensor shows tomorrow’s forecast, second sensor shows the next day and so on:
+# Example configuration.yaml entry
+sensor:
+ - platform: yweather
+ forecast: 1
+ name: yw_day1
+ monitored_conditions:
+ - weather
+ - temp_min
+ - temp_max
+
+ - platform: yweather
+ forecast: 2
+ name: yw_day2
+ monitored_conditions:
+ - weather
+ - temp_min
+ - temp_max
+
+ - platform: yweather
+ forecast: 3
+ name: yw_day3
+ monitored_conditions:
+ - weather
+ - temp_min
+ - temp_max
+
+
+Details about the API are available in the Yahoo! Developer Network.
diff --git a/getting-started/presence-detection/index.html b/getting-started/presence-detection/index.html index 79dab5aedb..e3491743e4 100644 --- a/getting-started/presence-detection/index.html +++ b/getting-started/presence-detection/index.html @@ -81,7 +81,7 @@ Screenshot of Home Assistant showing a school, work and home zone and two peopleThe device tracker component offers presence detection for Home Assistant. It supports two different methods for presence detection: scan for connected devices on the local network and connect to third party service.
Scanning for connected devices is easy to setup. See the instructions for our supported routers or scan the network using nmap. This approach does have its limitations, however: it will only be able to detect if a device is home, and iPhones may show as not home inaccurately (as iPhones disconnect from WiFi if idle).
-Home Assistant currently supports two third-party services for presence detection: OwnTracks and Locative. OwnTracks is an app that you install on your iPhone or Android phone that allows you to push the location of your device to Home Assistant using an MQTT broker. An MQTT broker is an Internet of Things communication platform that you can freely host yourself or get a private instance for free in the cloud.
+Home Assistant currently supports multiple third-party services for presence detection: OwnTracks, [GPSLogger][ha-gpslogger] and Locative. OwnTracks is an app that you install on your iPhone or Android phone that allows you to push the location of your device to Home Assistant using an MQTT broker. An MQTT broker is an Internet of Things communication platform that you can freely host yourself or get a private instance for free in the cloud.
OwnTracks communicates directly with your MQTT broker; no data will pass through their servers.
diff --git a/sitemap.xml b/sitemap.xml index bb66a2ebab..691d5e88b0 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -3058,62 +3058,62 @@