Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Latest commit

 

History

History
46 lines (33 loc) · 1.54 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.54 KB

MoneyDashboard Net Worth Sensor

hacs_badge

Buy me a coffee

This component will scrape your MoneyDashboard account for the following attributes:

* Net Balance  
* Positive Balance
* Negative Balance
* Individual Account Balances (coming soon)

The Base state for the component will use your Net Balance

Installation

HACS

This card is available in HACS (Home Assistant Community Store)

Manual

Copy this folder to <config_dir>/custom_components/moneydashboard/.

Configuration

Add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: moneydashboard
    email: [email protected]
    password: password

Restart HomeAssistant and look for your new shiny sensor.moneydashboard_net_balance sensor!

##Formatting After receiving advice from a user regarding the formatting "breaking" the history of the sensor, the thousands separator (,) has been removed in place of just standard floats, if you would like it back for your lovelace display you can use the following value template

{{ ‘{0:,.0f}’.format(states.sensor.moneydashboard_net_balance) }}