Files
Symcon_Belevo_Energiemanage…/VGT_Sub/module.php
2025-11-28 07:42:58 +01:00

163 lines
5.0 KiB
PHP

<?php
declare(strict_types=1);
class VGT_Sub extends IPSModule
{
public function Create()
{
parent::Create();
// Konfiguration
$this->RegisterPropertyString('DeviceID', '');
// Eigene Status-Variablen (schreibbar)
$this->RegisterVariableFloat('PowerProduction', 'Power Production', '', 10);
$this->EnableAction('PowerProduction');
$this->RegisterVariableFloat('StateOfCharge', 'State of Charge', '', 11);
$this->EnableAction('StateOfCharge');
$this->RegisterVariableBoolean('IsRunning', 'Is Running', '', 12);
$this->EnableAction('IsRunning');
$this->RegisterVariableBoolean('IsReady', 'Is Ready', '', 13);
$this->EnableAction('IsReady');
$this->RegisterVariableFloat('MinSoc', 'Min SoC', '', 14);
$this->EnableAction('MinSoc');
$this->RegisterVariableFloat('MaxSoc', 'Max SoC', '', 15);
$this->EnableAction('MaxSoc');
// Eingehende remote-control commands (readonly)
$this->RegisterVariableInteger('PowerSetpoint', 'Power Setpoint', '', 30);
IPS_SetVariableCustomAction($this->GetIDForIdent('PowerSetpoint'), 0);
$this->RegisterVariableString('Strategy', 'Strategy', '', 31);
IPS_SetVariableCustomAction($this->GetIDForIdent('Strategy'), 0);
}
public function ApplyChanges()
{
parent::ApplyChanges();
$this->ConnectParent('{F7A0DD2E-7684-95C0-64C2-D2A9DC47577B}');
$this->SubscribeTopics();
}
private function SubscribeTopics()
{
$device = $this->ReadPropertyString('DeviceID');
if ($device == '') {
return;
}
// Topics zum Abonnieren
$topics = [
"feedback-request/$device",
"remote-control-request/$device"
];
foreach ($topics as $topic) {
$this->SendDebug("Subscribe", $topic, 0);
$this->SendDataToParent(json_encode([
"DataID" => "{F7A0DD2E-7684-95C0-64C2-D2A9DC47577B}",
"PacketType" => 8, // SUBSCRIBE
"Topic" => $topic,
"QoS" => 0
]));
}
}
public function ReceiveData($JSONString)
{
$data = json_decode($JSONString, true);
if (!isset($data['Topic'])) {
return;
}
$topic = $data['Topic'];
$payload = $data['Payload'];
$this->SendDebug("RX Topic", $topic, 0);
$this->SendDebug("RX Payload", $payload, 0);
$device = $this->ReadPropertyString('DeviceID');
if ($topic === "feedback-request/$device") {
$this->HandleFeedbackRequest($device);
return;
}
if ($topic === "remote-control-request/$device") {
$this->HandleRemoteControlRequest($device, $payload);
return;
}
}
private function HandleFeedbackRequest($device)
{
$response = [
"power_production" => GetValueFloat($this->GetIDForIdent('PowerProduction')),
"state_of_charge" => GetValueFloat($this->GetIDForIdent('StateOfCharge')),
"is_running" => GetValueBoolean($this->GetIDForIdent('IsRunning')),
"is_ready" => GetValueBoolean($this->GetIDForIdent('IsReady')),
"min_soc" => GetValueFloat($this->GetIDForIdent('MinSoc')),
"max_soc" => GetValueFloat($this->GetIDForIdent('MaxSoc'))
];
$json = json_encode($response);
$topic = "feedback-response/$device";
$this->SendDebug("TX Feedback", "$topic => $json", 0);
$this->SendDataToParent(json_encode([
"DataID" => "{F7A0DD2E-7684-95C0-64C2-D2A9DC47577B}",
"PacketType" => 3, // PUBLISH
"Topic" => $topic,
"Payload" => $json,
"QoS" => 0,
"Retain" => false
]));
}
private function HandleRemoteControlRequest($device, $payload)
{
$json = @json_decode($payload, true);
if (!is_array($json)) {
$this->SendDebug("Error", "Ungültiges JSON", 0);
return;
}
if (isset($json['power_setpoint'])) {
SetValue($this->GetIDForIdent('PowerSetpoint'), (int)$json['power_setpoint']);
}
if (isset($json['strategy'])) {
SetValueString($this->GetIDForIdent('Strategy'), (string)$json['strategy']);
}
$topic = "remote-control-response/$device";
$payloadOut = json_encode($json);
$this->SendDataToParent(json_encode([
"DataID" => "{F7A0DD2E-7684-95C0-64C2-D2A9DC47577B}",
"PacketType" => 3, // PUBLISH
"Topic" => $topic,
"Payload" => $payloadOut,
"QoS" => 0,
"Retain" => false
]));
$this->SendDebug("TX Remote", "$topic => $payloadOut", 0);
}
public function RequestAction($Ident, $Value)
{
SetValue($this->GetIDForIdent($Ident), $Value);
}
}
?>