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
This card is available in HACS (Home Assistant Community Store)
Copy this folder to <config_dir>/custom_components/moneydashboard/
.
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) }}