Introduction
- Wanted to stop people touching the TV
- TV is mounted with a wall at other side of TV cabinet
- A correctly masked motion sensor at one side could be a good deterrent
Vitamins
- Sonoff SNZB-03 PIR Motion Sensor
- etc. software for motion sensor to connect
- Adhesive - I used 3M Command strips
Design
- Modelled in Fusion 360 (file included for remixing)
- Not particularly parametric as I did not expect to need to make another anytime soon
- Snug slide fit for Sonoss SNZB-03 PIR Motion Sensor
- Can be removed with a knife levering on the sensor dome but otherwise stays put
- No supports required
Printing
- Print STL as downloaded, it should not need any supports
- My settings were
- 0.2mm
- 20% support cubic infill
- 3 verticall walls, 5 bottom/top walls
- 30s minimum layer time
Automation
- Tested on Home Assistant 2023.12.3
alias: TV Motion Sensor
description: ""
trigger:
- platform: state
entity_id:
- binary_sensor.[your_motion_sensor]
to: "on"
condition:
- condition: state
entity_id: media_player.[your_tv]
state: playing
action:
- service: media_player.play_media
data:
media_content_id: media-source://media_source/local/error.mp3
announce: true
media_content_type: music
extra:
volume: 50
target:
entity_id:
- media_player.[your_media_player]
- service: media_player.turn_off
target:
entity_id: media_player.[your_tv]
data: {}
mode: single
The author marked this model as their own original creation.