If you don't want the light around the button to turn on when someone approaches the camera, you'll need to adjust two settings.
1. Status LED Setting: Head over to the "Always on at night" setting for the Status LED. Make sure to switch this off.

2. Alarm Delay Setting: The current issue with this setting is that its maximum delay is just 8 seconds, which can be triggered easily if someone stands close by for a short bit.

To adjust this, you'll need to dive a bit deeper:
a. Open DevTools (google how to do this)
b. Once you've got DevTools open, navigate to the 'Console' tab.
c. Paste the following code into the console and hit Enter:
document.querySelector('#remote-config-app > div.config-context-wrap > div > div.config-scroll-box > div > div.alarm-wrap > div.sensitivity-box > div:nth-child( > div > input').max = 300
d. Slide the slider all the way until the end
By doing this, you're extending the alarm delay to 5 minutes (300 seconds), making it much less likely to be triggered accidentally.
