forked from emoncms/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavailable_apps.php
58 lines (57 loc) · 2.49 KB
/
available_apps.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
$available_apps = array (
"myelectric"=>array(
"status"=>"",
"title"=>"My Electric",
"description"=>"A simple electricity consumption app showing real-time power in Watts and daily consumption in kWh. Switch between energy and cost modes."
),
"mysolarpv"=>array(
"status"=>"",
"title"=>"My Solar",
"description"=>"Explore solar generation compared to household consumption"
),
"mysolarpvdivert"=>array(
"status"=>"",
"title"=>"My Solar Divert",
"description"=>"Explore solar generation compared to household consumption"
),
"myenergy"=>array(
"status"=>"",
"title"=>"My Energy",
"description"=>"This app extends the My Solar app by adding in a share of UK wind"
),
"myelectric2"=>array(
"status"=>"Development",
"title"=>"My Electric 2",
"description"=>"A slightly more in-depth version of the standard My Electric app with a daily kWh consumption graph which allows drilling down to see the power data for any selected day.<br>Household consumption can also be compared with the average UK household and ZeroCarbonBritain targets."
),
"timeofuse"=>array(
"status"=>"Development",
"title"=>"Time of use",
"description"=>"Time of use version of My Electric, showing night time and day time consumption. Night tariff start and end times can be set in the config to adjust for different tariff times."
),
"timeofuse2"=>array(
"status"=>"Development",
"title"=>"Time of use - flexible",
"description"=>"Time of use version of My Electric, with multiple tariffs (written for Australia, could be useful elsewhere with multiple tariffs)."
),
"costcomparison"=>array(
"status"=>"Development",
"title"=>"Cost Comparison",
"description"=>"Energy provider cost comparison with time of use tariffs"
),
"myheatpump"=>array(
"status"=>"Development",
"title"=>"My Heatpump",
"description"=>"Explore heatpump performance: daily electricity consumption, heat output and COP. Zoom in for detailed temperature, power, heat graphs."
),
"openevse"=>array(
"status"=>"Development",
"title"=>"OpenEVSE",
"description"=>"Explore OpenEVSE charging"
) //,"template"=>array(
// "status"=>"Development",
// "title"=>"Template",
// "description"=>"A basic app example useful for developing new apps"
//)
);