mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-30 14:56:50 +00:00

* Update sensor.fido.markdown https://github.com/home-assistant/home-assistant.io/issues/6385 * Update sensor.fido.markdown
95 lines
2.3 KiB
Markdown
95 lines
2.3 KiB
Markdown
---
|
|
layout: page
|
|
title: "Fido Sensor"
|
|
description: "Instructions on how to integrate Fido data usage within Home Assistant."
|
|
date: 2017-01-01 17:17
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: fido.png
|
|
ha_category: Network
|
|
ha_release: 0.39
|
|
ha_iot_class: "Cloud Polling"
|
|
---
|
|
|
|
|
|
Integrate your [Fido](https://www.fido.ca/) account information into Home Assistant.
|
|
|
|
## {% linkable_title Configuration %}
|
|
|
|
To enable this sensor, add the following lines to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
- platform: fido
|
|
username: MYUSERNAME
|
|
password: MYPASSWORD
|
|
monitored_variables:
|
|
- fido_dollar
|
|
- balance
|
|
- data_used
|
|
```
|
|
|
|
Configuration variables:
|
|
{% configuration %}
|
|
username:
|
|
description: Your Fido username (your Fido phone number or your email).
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: Your Fido password.
|
|
required: true
|
|
type: string
|
|
number:
|
|
description: Your Fido phone number (it will use your username if empty).
|
|
required: false
|
|
type: string
|
|
monitored_variables:
|
|
description: Variables to monitor.
|
|
required: true
|
|
type: list
|
|
keys:
|
|
fido_dollar:
|
|
description: Your Fido dollar balance
|
|
balance:
|
|
description: Your account balance
|
|
data_used:
|
|
description: Current data used
|
|
data_limit:
|
|
description: Current data limit
|
|
data_remaining:
|
|
description: Current data remaining
|
|
text_used:
|
|
description: SMS sent
|
|
text_limit:
|
|
description: SMS limit
|
|
text_remaining:
|
|
description: SMS remaining
|
|
mms_used:
|
|
description: MMS sent
|
|
mms_limit:
|
|
description: MMS limit
|
|
mms_remaining:
|
|
description: MMS remaining
|
|
text_int_used:
|
|
description: International SMS sent
|
|
text_int_limit:
|
|
description: International SMS limit
|
|
text_int_remaining:
|
|
description: International SMS remaining
|
|
talk_used:
|
|
description: Talk time used
|
|
talk_limit:
|
|
description: Talk time limit
|
|
talt_remaining:
|
|
description: Talk time remaining
|
|
other_talk_used:
|
|
description: Other talk time used (It could be international calls)
|
|
other_talk_limit:
|
|
description: Other talk time limit
|
|
other_talt_remaining:
|
|
description: Other talk time remaining
|
|
{% endconfiguration %}
|