From a0a28aec450f95a1b57175492ab88615fab0fcaf Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Tue, 24 Mar 2026 23:16:10 +0100 Subject: [PATCH] apps_motion: report motion sensor change also via LED_Simple module. --- avr/apps/motion/main.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avr/apps/motion/main.asm b/avr/apps/motion/main.asm index e6dc6a8..4e17005 100644 --- a/avr/apps/motion/main.asm +++ b/avr/apps/motion/main.asm @@ -101,8 +101,8 @@ appMotionSendValue: ldi r17, VALUE_ID_MOTION ; VALUE ID ldi r22, AQHOME_VALUETYPE_MOTION ; VALUE TYPE rcall Main_Send8BitValueReport -#ifdef MODULES_LED_ACTIVITY - rcall LedActivity_Trigger ; (r16) +#ifdef MODULES_LED_SIMPLE + rcall LedSimple_SignalActivity ; (R18, R19, R20) #endif ret ; @end