167 lines
5.2 KiB
PHP
167 lines
5.2 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
|
|
$this->RegisterVariableInteger('PowerSetpoint', 'Power Setpoint', '', 30);
|
|
IPS_SetVariableCustomAction($this->GetIDForIdent('PowerSetpoint'), 0); // readonly
|
|
|
|
$this->RegisterVariableString('Strategy', 'Strategy', '', 31);
|
|
IPS_SetVariableCustomAction($this->GetIDForIdent('Strategy'), 0); // readonly
|
|
}
|
|
|
|
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 = [
|
|
"feedback-request/$device",
|
|
"remote-control-request/$device"
|
|
];
|
|
|
|
foreach ($topics as $topic) {
|
|
$this->SendDebug("Subscribe", $topic, 0);
|
|
$this->SendDataToParent(json_encode([
|
|
'DataID' => '{7F7632D9-FA40-4F38-8DEA-C83CD4325A32}',
|
|
'Topic' => $topic,
|
|
'Payload' => '',
|
|
'Retain' => false
|
|
]));
|
|
}
|
|
}
|
|
|
|
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');
|
|
|
|
// -----------------------------------------------------
|
|
// 1) FEEDBACK REQUEST → send FEEDBACK RESPONSE
|
|
// -----------------------------------------------------
|
|
if ($topic === "feedback-request/$device") {
|
|
$this->HandleFeedbackRequest($device);
|
|
return;
|
|
}
|
|
|
|
// -----------------------------------------------------
|
|
// 2) REMOTE CONTROL REQUEST → write values + respond
|
|
// -----------------------------------------------------
|
|
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' => '{7F7632D9-FA40-4F38-8DEA-C83CD4325A32}',
|
|
'Topic' => $topic,
|
|
'Payload' => $json,
|
|
'Retain' => false
|
|
]));
|
|
}
|
|
|
|
private function HandleRemoteControlRequest($device, $payload)
|
|
{
|
|
$json = @json_decode($payload, true);
|
|
if (!is_array($json)) {
|
|
$this->SendDebug("Error", "Ungültiges JSON", 0);
|
|
return;
|
|
}
|
|
|
|
// Werte aus JSON übernehmen
|
|
if (isset($json['power_setpoint'])) {
|
|
SetValue($this->GetIDForIdent('PowerSetpoint'), (int)$json['power_setpoint']);
|
|
}
|
|
|
|
if (isset($json['strategy'])) {
|
|
SetValueString($this->GetIDForIdent('Strategy'), (string)$json['strategy']);
|
|
}
|
|
|
|
// Antwort identisch zurücksenden
|
|
$topic = "remote-control-response/$device";
|
|
|
|
$this->SendDataToParent(json_encode([
|
|
'DataID' => '{7F7632D9-FA40-4F38-8DEA-C83CD4325A32}',
|
|
'Topic' => $topic,
|
|
'Payload' => json_encode($json),
|
|
'Retain' => false
|
|
]));
|
|
|
|
$this->SendDebug("TX RemoteControl", "$topic => " . json_encode($json), 0);
|
|
}
|
|
|
|
public function RequestAction($Ident, $Value)
|
|
{
|
|
SetValue($this->GetIDForIdent($Ident), $Value);
|
|
}
|
|
}
|
|
|
|
?>
|