#11 Energieverbrauch näherungsweise berechnen
This commit is contained in:
parent
d2e1b00b3f
commit
6b041d7cca
@ -2,6 +2,7 @@
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
import ssl
|
import ssl
|
||||||
|
import time
|
||||||
|
|
||||||
import octoprint.plugin
|
import octoprint.plugin
|
||||||
import requests
|
import requests
|
||||||
@ -25,6 +26,9 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
|
|||||||
|
|
||||||
self._timer = None
|
self._timer = None
|
||||||
|
|
||||||
|
self.energy = 0
|
||||||
|
self.lastTimeStamp = 0
|
||||||
|
|
||||||
self.ctx = ssl.create_default_context()
|
self.ctx = ssl.create_default_context()
|
||||||
self.ctx.check_hostname = False
|
self.ctx.check_hostname = False
|
||||||
self.ctx.verify_mode = ssl.CERT_NONE
|
self.ctx.verify_mode = ssl.CERT_NONE
|
||||||
@ -75,7 +79,15 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
|
|||||||
try:
|
try:
|
||||||
request = requests.get(
|
request = requests.get(
|
||||||
'http://{}/report'.format(self.ip), timeout=1)
|
'http://{}/report'.format(self.ip), timeout=1)
|
||||||
|
if request.status_code == 200:
|
||||||
|
timestamp = time.time()
|
||||||
data = request.json()
|
data = request.json()
|
||||||
|
if not self.lastTimeStamp == 0:
|
||||||
|
intervall = timestamp - self.lastTimeStamp
|
||||||
|
# Energy in Wh
|
||||||
|
self.energy = self.energy + (intervall * data["power"] / 3600)
|
||||||
|
self.lastTimeStamp = timestamp
|
||||||
|
data["energy"] = self.powerConsumed
|
||||||
data["onOffButtonEnabled"] = self.onOffButtonEnabled
|
data["onOffButtonEnabled"] = self.onOffButtonEnabled
|
||||||
self._plugin_manager.send_plugin_message(self._identifier, data)
|
self._plugin_manager.send_plugin_message(self._identifier, data)
|
||||||
except (requests.exceptions.ConnectionError, ValueError):
|
except (requests.exceptions.ConnectionError, ValueError):
|
||||||
|
@ -8,6 +8,7 @@ $(function() {
|
|||||||
|
|
||||||
self.onOffButtonEnabled = ko.observable();
|
self.onOffButtonEnabled = ko.observable();
|
||||||
self.mystromswitchPowerValue = document.getElementById("mystromswitchPowerValue")
|
self.mystromswitchPowerValue = document.getElementById("mystromswitchPowerValue")
|
||||||
|
self.mystromswitchEnergyValue = document.getElementById("mystromswitchEnergyValue")
|
||||||
|
|
||||||
self.onToggleRelayEvent = function(){
|
self.onToggleRelayEvent = function(){
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@ -32,6 +33,7 @@ $(function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
self.onOffButtonEnabled(data.onOffButtonEnabled);
|
self.onOffButtonEnabled(data.onOffButtonEnabled);
|
||||||
|
self.mystromswitchEnergyValue.innerHTML = "Energy: "+data.energy.toFixed(1)+"Wh"
|
||||||
if(data.relay == false){
|
if(data.relay == false){
|
||||||
self.mystromswitchPowerValue.innerHTML = "Relay is off";
|
self.mystromswitchPowerValue.innerHTML = "Relay is off";
|
||||||
} else if (data.power != null) {
|
} else if (data.power != null) {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<div class="sidebar_plugin_mystromswitch">
|
<div class="sidebar_plugin_mystromswitch">
|
||||||
<label class="control-label" id="mystromswitchPowerValue">Powerconsumption 0.0W</label>
|
<label class="control-label" id="mystromswitchPowerValue">Powerconsumption 0.0W</label>
|
||||||
|
<label class="control-label" id="mystromswitchEnergyValue">Energy 0.0Wh</label>
|
||||||
<button class="btn btn-primary" data-bind="click: onToggleRelayEvent, visible : onOffButtonEnabled">{{ _('Toggle Relais') }}</button>
|
<button class="btn btn-primary" data-bind="click: onToggleRelayEvent, visible : onOffButtonEnabled">{{ _('Toggle Relais') }}</button>
|
||||||
</div>
|
</div>
|
||||||
|
2
setup.py
2
setup.py
@ -14,7 +14,7 @@ plugin_package = "octoprint_mystromswitch"
|
|||||||
plugin_name = "OctoPrint-MyStromSwitch"
|
plugin_name = "OctoPrint-MyStromSwitch"
|
||||||
|
|
||||||
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
||||||
plugin_version = "0.3.0"
|
plugin_version = "0.4.0"
|
||||||
|
|
||||||
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
||||||
# module
|
# module
|
||||||
|
Loading…
Reference in New Issue
Block a user