Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
OpenClaw 노드를 활용한 스마트홈 제어
nodes.camera_snap
nodes.camera_clip
nodes.screen_record
nodes.location_get
nodes.run
nodes.notify
"현관 카메라 보여줘" "뒷마당에 누가 있는지 확인해줘"
# 전면 카메라 스냅샷 nodes.camera_snap(node="iphone", facing="back") # 양쪽 카메라 nodes.camera_snap(node="iphone", facing="both")
"집에 고양이 잘 있나 확인해줘"
openclaw cron add --name "pet-check" \ --every "4h" \ --message "거실 카메라로 고양이 상태 확인해줘" \ --announce --session isolated
# 노드에서 Shortcut 실행 nodes.run(node="mac-mini", command=["shortcuts", "run", "거실 불 켜기"]) # HomeKit 제어 (shortcuts 경유) nodes.run(node="mac-mini", command=["shortcuts", "run", "퇴근 모드"])
# HEARTBEAT.md에 추가 ## 홈 자동화 - 해 질 무렵 (일몰 시간 체크) → "퇴근 모드" Shortcut 실행 - 심야 시간 (23:00 이후) → 불필요한 조명 체크
"내가 집 근처 도착하면 알려줘"
# 현재 위치 확인 nodes.location_get(node="iphone", desiredAccuracy="balanced")
## 위치 체크 - 위치 확인 후 집(좌표) 반경 500m 이내면 "집 도착" 알림 - 사무실 반경이면 "출근" 기록
openclaw cron add --name "home-monitor" \ --every "1h" \ --message "현관 카메라 확인. 택배나 방문자 있으면 알려줘." \ --announce --session isolated
openclaw cron add --name "morning-routine" \ --cron "0 7 * * *" --tz "Asia/Seoul" \ --message "아침 루틴: 날씨 확인, 오늘 일정 브리핑, 거실 조명 켜기" \ --announce