From 16e04afebd19f4c765f974a83b2dd1bb6b606996 Mon Sep 17 00:00:00 2001 From: Alexander Klein Date: Tue, 9 Apr 2024 21:31:54 +0200 Subject: [PATCH] fix copy paste mistake --- lib/Component/component.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Component/component.h b/lib/Component/component.h index bf37591..77c3e48 100644 --- a/lib/Component/component.h +++ b/lib/Component/component.h @@ -62,7 +62,7 @@ public: * If the component is deactivated the call of loop() ha no effect */ void deactivate() { this->active = false; } - void activate() { this->active = false; } + void activate() { this->active = true; } protected: /**