This is a module for the MagicMirror².
You can use this module to list your https://chess.com daily games, either as a simple list, or by displaying actual chess board(s). You can customize this module. Limit the number of boards (or don't show any boards at all), alter the updating interval, and most importantly, pick a nice theme |
(You can show as many boards as you like.) |
There are three steps to get this module up and running:
cd MagicMirror/modules/
, followed bygit clone https://github.com/nout-kleef/MMM-Chess-Daily.git
cd MMM-Chess-Daily
, followed bynpm install
(this installs thechess-web-api
Node module)- add the following configuration block to the modules array in the
config/config.js
file:
var config = {
modules: [
{
module: 'MMM-Chess-Daily',
header: "my chess games",
position: "top_right",
config: {
username: "<YOUR_USERNAME>",
maxGames: 2,
maxBoards: 2,
theme: "classic"
}
}
]
}
If you want to improve this module, you may find the following documentation helpful: https://www.npmjs.com/package/chess-web-api