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
+26-2
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
An unofficial <ahref="https://www.seneye.com/">Seneye</a> aquarium monitor module for the <ahref="https://github.com/MichMich/MagicMirror">MagicMirror</a> project
Add `MMM-Seneye` module to the `modules` array in the `config/config.js` file:
17
+
18
+
###### Minimum config
19
+
````javascript
20
+
{
21
+
"module":"MMM-Seneye",
22
+
"position":"top_right",
23
+
"config": {
24
+
"deviceID":"12345",
25
+
"email":"example@email.com",
26
+
"password":"password",
27
+
}
28
+
}
29
+
````
30
+
31
+
###### All options
17
32
````javascript
18
33
{
19
34
"module":"MMM-Seneye",
@@ -22,6 +37,9 @@ Add `MMM-Seneye` module to the `modules` array in the `config/config.js` file:
22
37
"deviceID":"12345",
23
38
"email":"example@email.com",
24
39
"password":"password",
40
+
"temperatureSuffix":"C",
41
+
"logo":"blue",
42
+
"color":"#00aeef",
25
43
"readings": {
26
44
"temperature":true,
27
45
"ph":true,
@@ -44,7 +62,13 @@ MMM-Seneye uses the official <a href='https://api.seneye.com/'>Seneye API</a>
44
62
|`deviceID`| **Required**<br />You will need to find out your Seneye Device ID from the Seneye servers.<br /><br />The quickest way is to visit this url in any browser replacing the username and password with your own. You will get a response that includes your Device ID `https://api.seneye.com/v1/devices?user=***&pwd=***`<br /><br />**Type:**`String`
45
63
|`email` | **Required**<br />Your email address registered with Seneye. The same one used to login to <ahref='http://seneye.me/'>seneye.me</a><br /><br />**Type:**`String`
46
64
|`password`| **Required**<br />The password associated with the email address above.<br /><br />**Type:**`String`
|`temperatureSuffix`| **Optional**<br />A text string to display 'C' or 'F' after the temperature reading.<br /><br />**Type:**`String`<br />Default *C*
67
+
|`logo`| **Optional**<br />4 options available, `blue` (default), `white`, `grey`, or your choice of text<br /><br /><br /><br />**Type:**`String`<br />Default *blue*
68
+
|`color`| **Optional**<br />Your choice of hex colour code, including the #<br /><br /><br />**Type:**`String`<br />Default *#00aeef*
0 commit comments