General Tips
MTR-1 PCB with Sensors
Light Sensor (LTR-390UV)
When mounting the MTR-1 be sure to position the device so that the large hole at the top is not covered. This allows more light to enter and will ensure better accuracy
The onboard RGB LED will trigger the light sensor. Be cognizant of this when making automations based on light/LUX.
Mounting
LD2450 Performance and Electrical Parameters
LD2450 Datasheet
Expanding Horizontal Distance as Target Moves Further Away
The detection is 60 degrees from center on each side. So it is a cone when you are close to it but at 4 feet away to the side you might not be visible. If you are further from the wall it can detect further in a horizontal distance.
Increased ESP Temperature
If you are experiencing higher than normal ESP temperatures ~140+ degrees F then changing the wifi power save mode option might help decrease the temperature. Here is the link to the ESPHome WiFi Component Power Save Mode.
Power Save Mode The WiFi interface of all ESPs offer three power save modes to reduce the amount of power spent on WiFi. While some options can reduce the power usage of the ESP, they generally also decrease the reliability of the WiFi connection, with frequent disconnections from the router in the highest power saving mode.
NONE (least power saving, Default for ESP8266)
LIGHT (Default for ESP32)
HIGH (most power saving)
wifi:
# ...
power_save_mode: none
The code above can be added to the devices .yaml through the ESPHome addon edit button.
(Thank you for the suggestion, Brian!)
(Referenced from ESPHome website)