You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ Since we all want our [SD cards to live a long and prosper life](http://raspberr
10
10
11
11
The module also includes a **RESTful API** for controlling all aspects of your mirror from other network-enabled devices and controllers--anything that can open a URL. See the [API README](API/README.md) for more info!
12
12
13
+
**New:** The module can now display a QR code on your mirror for easy mobile access - simply scan and connect!
14
+
13
15
## Screenshots
14
16
15
17
### Main menu
@@ -51,13 +53,12 @@ cd MMM-Remote-Control
51
53
npm ci --omit=dev
52
54
```
53
55
54
-
- (2) Add the module to your `config.js` file, if you add a `position`, it will display the URL to the remote on the mirror.
56
+
- (2) Add the module to your `config.js` file. **Note:** You must set a `position` to display the URL/QR code on the mirror.
55
57
56
58
```js
57
59
{
58
60
module:'MMM-Remote-Control',
59
-
// uncomment the following line to show the URL of the remote control on the mirror
60
-
// position: 'bottom_left',
61
+
position:'bottom_left', // Required to show URL/QR code on mirror
61
62
// you can hide this module afterwards from the remote control itself
62
63
config: {
63
64
customCommand: {}, // Optional, See "Using Custom Commands" below
@@ -66,7 +67,15 @@ npm ci --omit=dev
66
67
// uncomment any of the lines below if you're gonna use it
67
68
// customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below
68
69
// apiKey: "", // Optional, See API/README.md for details
69
-
// classes: {} // Optional, See "Custom Classes" below
70
+
// classes: {}, // Optional, See "Custom Classes" below
71
+
72
+
// QR Code options (new!)
73
+
// showQRCode: true, // Optional, display QR code for easy mobile access (default: true)
74
+
// qrCodeSize: 150, // Optional, size of QR code in pixels (default: 150)
75
+
// qrCodePosition: "below" // Optional:
76
+
// "below" - Show URL above, QR code below (default)
0 commit comments