mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-03 17:48:59 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
85 lines
2.1 KiB
Markdown
85 lines
2.1 KiB
Markdown
---
|
|
layout: page
|
|
title: "Bitcoin"
|
|
description: "Instructions on how to integrate Bitcoin data within Home Assistant."
|
|
date: 2015-05-08 17:15
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: bitcoin.png
|
|
ha_category: Finance
|
|
ha_release: pre 0.7
|
|
ha_iot_class: "Cloud Polling"
|
|
---
|
|
|
|
|
|
The `bitcoin` sensor platform displays various details about the [Bitcoin](https://bitcoin.org) network.
|
|
|
|
To add the Bitcoin sensor to your installation, add a selection of the available display options to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
- platform: bitcoin
|
|
display_options:
|
|
- exchangerate
|
|
- trade_volume_btc
|
|
```
|
|
|
|
{% configuration %}
|
|
currency:
|
|
description: The currency to exchange to, eg. CHF, USD, EUR, etc.
|
|
required: false
|
|
type: string
|
|
default: USD
|
|
display_options:
|
|
description: Options to display in the frontend.
|
|
required: true
|
|
type: map
|
|
keys:
|
|
exchangerate:
|
|
description: Exchange rate of 1 BTC
|
|
trade_volume_btc:
|
|
description: Trade volume
|
|
miners_revenue_usd:
|
|
description: Miners revenue
|
|
btc_mined:
|
|
description: BTC mined
|
|
trade_volume_usd:
|
|
description: Trade volume in USD
|
|
difficulty:
|
|
description: Difficulty
|
|
minutes_between_blocks:
|
|
description: Time between blocks in minutes
|
|
number_of_transactions:
|
|
description: Number of transactions
|
|
hash_rate:
|
|
description: Hash rate in PH/s
|
|
timestamp:
|
|
description: Timestamp
|
|
mined_blocks:
|
|
description: Minded Blocks
|
|
blocks_size:
|
|
description: Block size
|
|
total_fees_btc:
|
|
description: Total fees in BTC
|
|
total_btc_sent:
|
|
description: Total sent in BTC
|
|
estimated_btc_sent:
|
|
description: Estimated sent in BTC
|
|
total_btc:
|
|
description: Total of BTC
|
|
total_blocks:
|
|
description: Total Blocks
|
|
next_retarget:
|
|
description: Next retarget
|
|
estimated_transaction_volume_usd:
|
|
description: Estimated transaction volume in BTC
|
|
miners_revenue_btc:
|
|
description: Miners revenue in BTC
|
|
market_price_usd:
|
|
description: Market price in USD
|
|
{% endconfiguration %}
|
|
|