File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments