Read the statement by Michael Teeuw here.
MagicMirror and adruino over ethernet
-
@BD0G my 8266 has onboard flash ram. No SD card required.
-
@sdetweil Was referring to @Kereknjek and recommending he backup the SD card on the Arduino that is working for safe keeping.
I have an 8266 as well ! Its dedicated to my smartblinds control that I control via smarthings and a custom 3 D printed enclosure for a servo that mounts in the top rail of the blinds. Works splendidly!
-
@BD0G I agree, backup is an important strategy. I found out the other day SD cards have a limited life, determined by number of writes…
-
@sdetweil said in MagicMirror and adruino over ethernet:
@Kereknjek cool. You could make a little change and have it return just data.
If the path is sensor1, send just sensor1’s data. Etc.
Pretty easy, just a case stmt… you could make it json data pretty easy too…
The request could ask for a sensor or block of sensors, and send raw data.
Yes! That is what i’m looking for.
But discussion went to arduino side.
My problem is that I don’t know how to do it at magic mirror side. -
@Kereknjek ok. More later. Grandson on site!
-
@Kereknjek so. the methods to get data from server (web site http://something) is request()
there are different forms XMLRequest, request… XMLRequest is builtin to the browser that MM runs on (either Electron, or Chrome)
the design of the MM module is in two parts… the part that runs in the browser, and renders the data
this javascript file name matches the module name.module = someModule, folder = someModule, filename = someModule.js
the ‘module’. js cannot use ‘require’() to load additional scripts… but SOME can be loaded
thru the mm callback at function getScripts()
for builtins, you can just use themthe processing model, is get your data, then call this.updateDom(somedelaytime), to tell MM that new data for your module is ready. the MM runtime will call you modules getDom() function to allow you to construct the html object tree of content to inject into the single page DOM, in the position[modulename] div…
you can see this tree in the developers windows (ctrl-shift-i, select the elements tab)in some cases the requirements of the data collection require services that are NOT builtin to the browser, serial port, database, complex api calls, etc… so, the MM design provides for a helper for the module, filename called node_helper.js
it can use require() to load service libraries to access outside datasources, or manipulate data.
the module and helper talk to each other thru one api, sendSocketNotification(item_id, data)
and receiveSocketNotification(item_id, data).
the format of item_id is a string, and data can be any format/ totally up to you how you want to use it.the info provided in the config.js entry for a module, replaces same named items in the module ‘default{}’ object… BUT this data does NOT get sent to the helper UNLESS YOU DO IT.
a convention, is that the module receives notices from the system via notificationReceived (notice no ‘socket’ in the name)… and when the moduel receives the ‘all_modules_started’ notice, the module sends a pointer to the config block to the helper… so they both have the same copy.my Sample Module has all the parts, in a working example… but doesn’t do much… send the config down,
waits some time, and sends a configured message back up to the module, and then calls this.updated() to indicate new data is available.you can use request() in the helper, or XMLRequest() in the module (builtin) XMLRequest will process XML or a string. request() cab be any data format (including binary)…
these calls do EXACTLY the same thing as what your browser does when you put in http://some_ip_address to get the web page from your arduino
-
@sdetweil
Thank you!
Ill need some time to try it out.Mechanical or should I say, woodwork is finished. I’m still waiting for short hdmi cable, PIR sensor and hinges I ordered… It looks sexy alredy! Can’t wait to see it working.
-
@Kereknjek i would start slow…
use my sample, send one request, get back content. you cannot put a whole page up unless u open an iframe…
MM is called a Single Page Application… (SPA)…
in this model, each ‘module’ contributes a little content (a div’s worth) and that little bit is injected into the running view of the web page (dom=document object model) again, you can see this layout on the developers window, elements tabu can do this on your Windows PC too with chrome, press ctrl-shift-i on any page (again to turn it off)