Neues Ladestationsmodul mit ocpp Modul erstellt.

This commit is contained in:
2026-05-10 10:56:34 +02:00
parent 51b27d568a
commit bba6494c59
27 changed files with 3290 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
class OCPP21Adapter extends OCPP201Adapter
{
public function normalizeInbound(OCPPMessage $message): array
{
$data = parent::normalizeInbound($message);
$data['version'] = '2.1';
return $data;
}
public function supportsBidirectionalPreparation(): bool
{
return true;
}
}
?>