From 0631ecf7ac9a3719ae9597cd6c757072c67557a3 Mon Sep 17 00:00:00 2001 From: xorbital <53773184+xorbital@users.noreply.github.com> Date: Wed, 10 Nov 2021 16:12:22 +0100 Subject: [PATCH] Fix Beep for AR12TXEAAWKNEU The bit for Beep needs to be at this different location. --- src/ir_Samsung.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ir_Samsung.h b/src/ir_Samsung.h index 90b2ab52a..8715ee486 100644 --- a/src/ir_Samsung.h +++ b/src/ir_Samsung.h @@ -92,9 +92,9 @@ union SamsungProtocol{ uint8_t Mode :3; uint8_t :1; // Byte 13 - uint8_t :1; - uint8_t Beep :1; uint8_t :2; + uint8_t Beep :1; + uint8_t :1; uint8_t Power2 :2; uint8_t :2; };