Files
Symcon_Belevo_Energiemanage…/PV_Visu/module.php
2025-06-18 11:29:52 +02:00

21 lines
470 B
PHP

<?php
class PV_Visu extends IPSModule
{
public function Create()
{
parent::Create();
$this->RegisterPropertyInteger('VarProduction', 0);
$this->RegisterPropertyInteger('VarConsumption', 0);
$this->RegisterPropertyInteger('VarFeedIn', 0);
$this->RegisterPropertyInteger('VarGrid', 0);
$this->SetVisualizationType(3);
}
public function ApplyChanges(): void
{
parent::ApplyChanges();
}
}
?>