Skip to content

Commit 85a5f1c

Browse files
committed
Fix remaining issues
1 parent d1e26a9 commit 85a5f1c

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed
Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
3-
title: "Bbox"
4-
description: "How to integrate Bbox Bandwidth measure within Home Assistant."
3+
title: "Bbox Sensor"
4+
description: "How to integrate Bbox Bandwidth measuring within Home Assistant."
55
date: 2016-10-22 01:00
66
sidebar: true
77
comments: false
@@ -12,33 +12,30 @@ ha_category: Sensor
1212
ha_release: 0.31
1313
---
1414

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)
15+
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.
1716

1817
<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
18+
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.
2119
</p>
2220

2321
To add Bbox sensors to your installation, add the following to your `configuration.yaml` file:
2422

2523
```yaml
2624
# Example configuration.yaml entry
2725
sensor:
28-
platform: bbox
29-
monitored_variables:
30-
- down_max_bandwidth
31-
- up_max_bandwidth
32-
- current_down_bandwidth
33-
- current_up_bandwidth
26+
- platform: bbox
27+
monitored_variables:
28+
- down_max_bandwidth
29+
- up_max_bandwidth
30+
- current_down_bandwidth
31+
- current_up_bandwidth
3432
```
3533
3634
Configuration variables:
3735
3836
- **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.
37+
- **down_max_bandwidth**: Maximum bandwidth available for download.
38+
- **up_max_bandwidth**: Maximum bandwidth available for upload.
4139
- **current_down_bandwidth**: Instant measure of the current used bandwidth for download.
4240
- **current_up_bandwidth**: Instant measure of the current used bandwidthfor upload.
4341
44-

0 commit comments

Comments
 (0)