This module for the Magic Mirror² allows you to display live info from your 3D printer running RepRapFirmware. This firmware is mainly used on Duet3D control boards (Duet Wifi & Ethernet).
Navigate to your MagicMirror's modules
folder:
cd ~/MagicMirror/modules
Clone this repository:
git clone https://github.com/arirobinson/MMM-RepRapFirmware
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: "MMM-RepRapFirmware",
position: "top_right", //this can be any region
header: "3D Printer", //name your printer
config: {
host: "your_3d_printer_ip_address", //ip address of your printer
}
},
]
The following properties can be configured:
Option | Description |
---|---|
host |
IP address of your printer. Example value: 192.168.0.5 |
updateInterval |
Time between data updates (in ms). Default value: 5000 |
showProgressBar |
Show the progress bar when print is running. Possible values: true or false Default value: true |