-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Add documentation for Bbox Sensors #1292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
layout: page | ||
title: "Bbox" | ||
description: "How to integrate Bbox Bandwidth measure within Home Assistant." | ||
date: 2016-10-22 01:00 | ||
sidebar: true | ||
comments: false | ||
sharing: true | ||
footer: true | ||
logo: bbox.png | ||
ha_category: Sensor | ||
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. | ||
Sensors are mainly bandwidth measures (Details below) | ||
|
||
<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. | ||
You can check this by going on the 192.168.1.254 address with your internet browser | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would repleace internet browser with Web browser. Also missing a ".". |
||
</p> | ||
|
||
To add Bbox sensors to your installation, add the following to your `configuration.yaml` file: | ||
|
||
```yaml | ||
# Example configuration.yaml entry | ||
sensor: | ||
platform: bbox | ||
monitored_variables: | ||
- down_max_bandwidth | ||
- up_max_bandwidth | ||
- current_down_bandwidth | ||
- current_up_bandwidth | ||
``` | ||
|
||
Configuration variables: | ||
|
||
- **monitored_variables** array (*Required*): Sensors to display in the frontend. | ||
- **down_max_bandwidth**: Maximum bandwidth you can use for downloading. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would probably rephrase this from
To
|
||
- **up_max_bandwidth**: Maximum bandwidth you can use for uploadinf. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. uploadinf -> uploading. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would probably rephrase this from
To
|
||
- **current_down_bandwidth**: Instant measure of the current used bandwidth for download. | ||
- **current_up_bandwidth**: Instant measure of the current used bandwidthfor upload. | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HomeAssistant -> Home Assistant .