Fix remaining issues

This commit is contained in:
Fabian Affolter 2016-10-22 10:11:15 +02:00
parent d1e26a9833
commit 85a5f1c6f8
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -1,7 +1,7 @@
--- ---
layout: page layout: page
title: "Bbox" title: "Bbox Sensor"
description: "How to integrate Bbox Bandwidth measure within Home Assistant." description: "How to integrate Bbox Bandwidth measuring within Home Assistant."
date: 2016-10-22 01:00 date: 2016-10-22 01:00
sidebar: true sidebar: true
comments: false comments: false
@ -12,12 +12,10 @@ ha_category: Sensor
ha_release: 0.31 ha_release: 0.31
--- ---
The `bbox` platform uses the [Bbox Modem Router](https://fr.wikipedia.org/wiki/Bbox/) from the French Internet provider Bouygues Telecom. The `bbox` platform uses the [Bbox Modem Router](https://fr.wikipedia.org/wiki/Bbox/) from the French Internet provider Bouygues Telecom. Sensors are mainly bandwidth measures.
Sensors are mainly bandwidth measures (Details below)
<p class='note warning'> <p class='note warning'>
Due to third party limitation, the sensors will only be available if the HomeAssistant and the Bbox are on the same local area network. Due to third party limitation, the sensors will only be available if Home Assistant and the Bbox are on the same local area network. You can check this by going to 192.168.1.254 with your web browser.
You can check this by going on the 192.168.1.254 address with your internet browser
</p> </p>
To add Bbox sensors to your installation, add the following to your `configuration.yaml` file: To add Bbox sensors to your installation, add the following to your `configuration.yaml` file:
@ -25,7 +23,7 @@ To add Bbox sensors to your installation, add the following to your `configurati
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
sensor: sensor:
platform: bbox - platform: bbox
monitored_variables: monitored_variables:
- down_max_bandwidth - down_max_bandwidth
- up_max_bandwidth - up_max_bandwidth
@ -36,9 +34,8 @@ sensor:
Configuration variables: Configuration variables:
- **monitored_variables** array (*Required*): Sensors to display in the frontend. - **monitored_variables** array (*Required*): Sensors to display in the frontend.
- **down_max_bandwidth**: Maximum bandwidth you can use for downloading. - **down_max_bandwidth**: Maximum bandwidth available for download.
- **up_max_bandwidth**: Maximum bandwidth you can use for uploadinf. - **up_max_bandwidth**: Maximum bandwidth available for upload.
- **current_down_bandwidth**: Instant measure of the current used bandwidth for download. - **current_down_bandwidth**: Instant measure of the current used bandwidth for download.
- **current_up_bandwidth**: Instant measure of the current used bandwidthfor upload. - **current_up_bandwidth**: Instant measure of the current used bandwidthfor upload.