From 18de61b0f819ce51305dd93abe1940d57a7db04a Mon Sep 17 00:00:00 2001 From: Cyrille Nofficial Date: Wed, 29 Dec 2021 18:31:53 +0100 Subject: [PATCH] fix(blink): decrease blink frequency --- pkg/part/part.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/part/part.go b/pkg/part/part.go index 4effd35..20f6aaa 100644 --- a/pkg/part/part.go +++ b/pkg/part/part.go @@ -85,7 +85,7 @@ func (p *LedPart) onRecord(client mqtt.Client, message mqtt.Message) { if switchRecord.GetEnabled() { zap.S().Info("record mode enabled") - p.led.SetBlink(2) + p.led.SetBlink(0.5) } else { zap.S().Info("record mode disabled") p.led.SetBlink(0)