A Bitcoin pricechecker which can also display the price of your Bitcoin amount. Module for MagicMirror.
If you like this module and want to thank, please buy me a coffee.
In your terminal, go to your MagicMirror's Module folder:
cd ~/MagicMirror/modules
Clone this repository:
git clone https://github.com/jeroenpeters1986/MMM-bitcoin-portfolio.git
Now get your SolarEdge API key and authorize your application (instructions below).
Add MMM-bitcoin-portfolio
module to the modules
array in the config/config.js
file:
modules: [
{
module: 'MMM-bitcoin-portfolio',
position: 'middle_center',
config: {
currency: 'usd', // 'usd' and 'eur' available, defaults to 'usd'
showBeforePrice: 'Bitcoin price: ', // will display before the bitcoin price
ownedAmount: 0.05579, // the amount of bitcoin you own yourself
showBeforeOwned: 'Your wallet: ', // will display before the wallet value
updateInterval: 60000 // update interval in milliseconds,
}
},
]
This modules was built upon an existing module from GitHub user valmassoi