no message

This commit is contained in:
belevo\mh
2026-02-05 13:21:28 +01:00
parent b5973a5878
commit 658b9626b4

View File

@@ -68,6 +68,19 @@ class Bat_EV_SDL_V2 extends IPSModule
public function Update()
{
// Reentranzschutz verhindert parallele Update()-Läufe
$semKey = 'BatEVSDL_Update_' . $this->InstanceID;
if (!IPS_SemaphoreEnter($semKey, 5000)) {
// Überspringen, wenn bereits ein Lauf aktiv ist
$this->SendDebug("Update", "SKIP (Semaphore locked)", 0);
return;
}
try {
if (!GetValue($this->GetIDForIdent("State"))) {