emhass 0.10.6__py3-none-any.whl → 0.15.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
+ <!-- advance div, dynamically appended inside of index.html -->
1
2
  <!-- action button elements section -->
2
3
  <div class="loading-div" id="advance">
3
4
  <h4>Use the buttons below to manually launch different optimization tasks</h4>
@@ -17,8 +18,15 @@
17
18
  </br></br>
18
19
  <button type="button" id="regressor-model-fit" class="button button1">ML regressor model fit</button>
19
20
  <button type="button" id="regressor-model-predict" class="button button2">ML regressor model predict</button>
21
+ </br></br>
22
+ <div id="export-influxdb-section" style="display: none;">
23
+ <h4>Export InfluxDB data to CSV for ML training</h4>
24
+ <p style="font-size: 0.9em; color: #666; margin-top: -10px;">Export historical sensor data from InfluxDB to train ML regressor models</p>
25
+ <button type="button" id="export-influxdb-to-csv" class="button button1">Export InfluxDB to CSV</button>
26
+ </br></br>
27
+ </div>
20
28
  <!-- -->
21
- <!--dynamic input elements section -->
29
+ <!--dynamic runtime parameter input (list and box) elements section -->
22
30
  <h4>Input Runtime Parameters</h4>
23
31
  <div class="input-button-container">
24
32
  <div class="input-buttons">
emhass/static/basic.html CHANGED
@@ -1,3 +1,4 @@
1
+ <!-- basic div, dynamically appended inside of index.html -->
1
2
  <!-- action button elements section -->
2
3
  <div class="loading-div" id="basic">
3
4
  <h4>Use the button below to manually launch optimization task</h4>
@@ -7,6 +8,7 @@
7
8
  <div class="info">
8
9
  <p>The day-ahead optimization button will run once, based on the values entered into the configuration page.
9
10
  </br>
10
- After a few seconds, the charts and table below should be updated to reflect the optimization plan for the next 24 hours.
11
+ After a few seconds, the charts and table below should be updated to reflect the optimization plan for the next
12
+ 24 hours.
11
13
  </p>
12
- </div>
14
+ </div>
@@ -0,0 +1,48 @@
1
+ <!-- configuration list dynamically appended inside of configuration.html -->
2
+ <!-- configuration list view parameter sections -->
3
+ <div id="Local" class="section-card">
4
+ <div class="section-card-header">
5
+ <h4>Local</h4>
6
+ </div>
7
+ <div class="section-body"> </div> <!-- parameters will get generated here -->
8
+ </div>
9
+ <div id="System" class="section-card">
10
+ <div class="section-card-header">
11
+ <h4>System</h4>
12
+ </div>
13
+ <div class="section-body"> </div> <!-- parameters will get generated here -->
14
+ </div>
15
+ <div id="Tariff" class="section-card">
16
+ <div class="section-card-header">
17
+ <h4>Tariff</h4>
18
+ </div>
19
+ <div class="section-body"> </div> <!-- parameters will get generated here -->
20
+ </div>
21
+ <div id="Deferrable Loads" class="section-card">
22
+ <div class="section-card-header">
23
+ <h4>Deferrable Loads</h4>
24
+ <input id="number_of_deferrable_loads" min="1" type="number">
25
+ </label>
26
+ </div>
27
+ <div class="section-body"> </div> <!-- parameters will get generated here -->
28
+ </div>
29
+ <div id="Solar System (PV)" class="section-card">
30
+ <div class="section-card-header">
31
+ <h4>Solar System (PV)</h4>
32
+ <label class="switch" for="set_use_pv"> <!-- switch connected to set_use_pv -->
33
+ <input id="set_use_pv" type="checkbox">
34
+ <span class="slider"></span>
35
+ </label>
36
+ </div>
37
+ <div class="section-body"> </div> <!-- parameters will get generated here -->
38
+ </div>
39
+ <div id="Battery" class="section-card">
40
+ <div class="section-card-header">
41
+ <h4>Battery</h4>
42
+ <label class="switch" for="set_use_battery"> <!-- switch connected to set_use_battery -->
43
+ <input id="set_use_battery" type="checkbox">
44
+ <span class="slider"></span>
45
+ </label>
46
+ </div>
47
+ <div class="section-body"> </div> <!-- parameters will get generated here -->
48
+ </div>