Skip to content

Commit d1e26a9

Browse files
HydrelioxGitHubfabaff
authored andcommitted
Add documentation for Bbox Sensors (home-assistant#1292)
1 parent 69b5571 commit d1e26a9

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
layout: page
3+
title: "Bbox"
4+
description: "How to integrate Bbox Bandwidth measure within Home Assistant."
5+
date: 2016-10-22 01:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: bbox.png
11+
ha_category: Sensor
12+
ha_release: 0.31
13+
---
14+
15+
The `bbox` platform uses the [Bbox Modem Router](https://fr.wikipedia.org/wiki/Bbox/) from the French Internet provider Bouygues Telecom.
16+
Sensors are mainly bandwidth measures (Details below)
17+
18+
<p class='note warning'>
19+
Due to third party limitation, the sensors will only be available if the HomeAssistant and the Bbox are on the same local area network.
20+
You can check this by going on the 192.168.1.254 address with your internet browser
21+
</p>
22+
23+
To add Bbox sensors to your installation, add the following to your `configuration.yaml` file:
24+
25+
```yaml
26+
# Example configuration.yaml entry
27+
sensor:
28+
platform: bbox
29+
monitored_variables:
30+
- down_max_bandwidth
31+
- up_max_bandwidth
32+
- current_down_bandwidth
33+
- current_up_bandwidth
34+
```
35+
36+
Configuration variables:
37+
38+
- **monitored_variables** array (*Required*): Sensors to display in the frontend.
39+
- **down_max_bandwidth**: Maximum bandwidth you can use for downloading.
40+
- **up_max_bandwidth**: Maximum bandwidth you can use for uploadinf.
41+
- **current_down_bandwidth**: Instant measure of the current used bandwidth for download.
42+
- **current_up_bandwidth**: Instant measure of the current used bandwidthfor upload.
43+
44+

0 commit comments

Comments
 (0)