This is a module for the MagicMirror².
This module will show your bunq account balance on the smart mirror. All you need is a bunq account. The use of the API is free 🙌
This module is pretty simple to set up. You simply need to clone the module into your modules folder (like other modules).
cd MagicMirror/modules
git clone https://github.com/choffmann/MMM-bunq.git
After you clone the repositories, you have to install the node modules
cd ./MMM-bunq
npm install
To use this module, you need a API key from bunq. You can create an API key either in bunq`s developer portal or in the bunq app (Profile → Security & Settings → Developers → API keys).
To use this module, add the following configuration block to the modules array in the config/config.js
file:
let config = {
modules: [
{
module: "MMM-bunq",
position: "top_left",
header: "Joint Account",
config: {
iban: "YOUR_IBAN",
apiKey: "YOUR_API_KEY"
}
}
]
};
Option | Description |
---|---|
apiKey |
Required Your bunq API Key goes here. |
iban |
Required IBAN of your bunq monetary account, which will appear on the screen. |
title |
Optional Title in front of the balance. The title will be uppercase Type: String Default Balance |
unit |
Optional Unit of the balance Type: String Default € (Euro) |
updateInterval |
Optional Refresh rate Type: int (milliseconds) Default 60000 milliseconds (1 minute) |