A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
I have the API Documentation - Not sure next steps
- 
 Hi all, The E-Monitor API specification has a listing of the supported API methods (page 3), like authenticate, deauthenticate, getCurrentData and so on. I’m not really sure where to go from here, as far as developing a module based on the API specification. Below, I have some of the very basic structure of the module, but I feel like I am out of my league when trying to write my own module. Module.resgister (“MMM-Emonitor.js”, { 
 },getStyles: function() { 
 },start: function() { 
 },getDom: function() { 
 },// And then the EMonitor methods below: 
 authenticate: function() {
 }deauthenticate: function() { 
 }getCurrentData: function() { 
 }//… and so on down the list of the supported API methods 

