21 lines
470 B
PHP
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();
|
|
}
|
|
|
|
}
|
|
?>
|