-
MyElectric Power + Kwh/D
-
MySolar Solar power generated Vs. consumed
-
MySolar (with divert) Solar power generated Vs. consumed, with special handling for excess generation that's been diverted to an immersion/electric car/etc.
-
MyHeatpump Heatpump statistics
-
MyEnergy Same as MySolar plus live grid carbon intensity and wind turbine output
cd /var/www/emoncms/Modules
git clone https://github.com/emoncms/app
Make sure to check for database updates in Emoncms > Admin.
Optionally, if certain applications should not be possible to be created, as e.g. their configurations do not apply for certain countrys, a blacklist may be maintained in the settings.php
file.
To use this functionality, simply edit the default settings file
sudo nano /var/www/emoncms/settings.php
And add the following lines to the bottom of the file, to e.g. blacklist all Time of use apps:
# App module settings
$app_settings = array(
// Blacklisted Apps. Uncommented apps will not be available for users to create.
'hidden' => array(
//'myelectric',
//'mysolarpv',
//'mysolarpvdivert',
//'myenergy',
//'myelectric2',
'timeofuse',
'timeofuse2',
'timeofusecl',
//'costcomparison',
//'myheatpump',
//'openevse'
)
);