mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-12 05:58:58 +00:00
40 lines
888 B
Markdown
40 lines
888 B
Markdown
---
|
|
layout: page
|
|
title: "Ripple"
|
|
description: "Instructions how to integrate ripple.com data within Home Assistant."
|
|
date: 2017-06-06 16:20
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: ripple.png
|
|
ha_category: Finance
|
|
ha_release: 0.47
|
|
ha_iot_class: "Cloud Polling"
|
|
---
|
|
|
|
|
|
The `ripple` sensor platform displays Ripple wallet balances from [Ripple.com](https://ripple.com).
|
|
|
|
To add the Ripple sensor to your installation, specify a ripple address to watch in the `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
- platform: ripple
|
|
address: 'r3kmLJN5D28dHuH8vZNUZpMC43pEHpaocV'
|
|
```
|
|
|
|
{% configuration %}
|
|
address:
|
|
description: Ripple wallet address to watch.
|
|
required: true
|
|
type: string
|
|
name:
|
|
description: Name for the sensor to use in the frontend.
|
|
required: false
|
|
type: string
|
|
default: Ripple Balance
|
|
{% endconfiguration %}
|
|
|