매 hardware: Apple Neural Engine, Google Edge TPU, NVIDIA Jetson.
Standard
Matter (formerly CHIP): cross-vendor smart home.
Thread (mesh networking).
Zigbee / Z-Wave (legacy).
HAP (HomeKit).
LLM 의 ambient
매 voice assistant 의 next gen.
매 always-on (privacy 의 challenge).
매 small model (Phi, Gemma) on-device.
매 multimodal (vision + voice).
매 use case
Smart home: 매 lighting, 매 climate, 매 entry.
Health monitoring: 매 wearable + AI.
Office productivity: 매 occupancy, 매 booking.
Retail: 매 customer flow, 매 dwell time.
Elderly care: 매 fall detection, 매 routine.
Vehicle: 매 driver state, 매 passenger comfort.
매 privacy challenge
Always-on listening: 매 wake word 의 false trigger.
Camera / vision: 매 most invasive.
Profiling: 매 routine 의 reveal sensitive (medical, sleep, sex).
Data aggregation: 매 silent leak.
Surveillance creep: 매 state / corp.
매 mitigation
On-device inference: 매 raw data 의 leave 의 X.
Federated learning: 매 model update 만.
Differential privacy: 매 noise.
User control: 매 mic mute, 매 camera shutter (Apple).
Data minimization: 매 keep 최소.
Audit log: 매 user 의 visibility.
💻 패턴
Matter (cross-vendor)
# 매 Matter device 의 commission (Python SDK)fromchipimportcontrollerdevnode=controller.commission(setup_pin_code=20202021,discriminator=3840,network='Thread',)# 매 device 의 fabric 에 add.# 매 across-vendor (Apple Home + Google Home + SmartThings).
importtflite_runtime.interpreterastfliteinterpreter=tflite.Interpreter(model_path='gesture.tflite')interpreter.allocate_tensors()defdetect_gesture(camera_frame):interpreter.set_tensor(0,preprocess(camera_frame))interpreter.invoke()returninterpreter.get_tensor(output_details[0]['index'])# 매 raw frame 의 leave 의 X — 매 label 만.
Privacy-preserving presence
# 매 mmWave radar (no camera)defdetect_presence(radar_frame):# 매 person 의 presence + count + 매 fall# 매 identity X — 매 raw data Xreturnpresence_count,fall_alert# Apple Watch 의 fall detection 의 same approach.
Wake-word + on-device
importopenwakewordowwModel=openwakeword.Model(wakeword_models=['hey_jarvis'])deflisten():whileTrue:audio_chunk=mic.read(0.5)prediction=owwModel.predict(audio_chunk)ifprediction['hey_jarvis']>0.5:trigger_assistant()# 매 cloud 시작
→ 매 wake word 까지 매 on-device. 매 cloud 의 explicit consent.
🤔 결정 기준
상황
Approach
Smart home
Matter + Home Assistant
Privacy-critical
Edge AI + on-device
Cross-vendor
Matter
Voice assistant
Wake word (local) + cloud
Health monitoring
Wearable + edge ML
Elderly care
mmWave (no camera)
기본값: 매 edge-first + 매 user control + 매 minimum data.
언제: 매 ambient device design. 매 smart home automation. 매 IoT privacy review. 매 voice assistant integration.
언제 X: 매 explicit user attention 필요 task. 매 highly visual interaction.
❌ 안티패턴
Camera-first: 매 most invasive 의 default.
Cloud-everything: 매 latency + privacy + offline 의 fail.
No mute / shutter: 매 user control X.
Vendor lock-in: 매 Matter X.
Profiling 의 broad: 매 sensitive routine 의 leak.
No data minimization: 매 silent 의 hoard.
🧪 검증 / 중복
Verified (Matter spec, Apple HomeKit, Google Nest).