Files
openclaw-workspace/scripts/list-sensors.ps1
2026-04-11 09:45:12 -05:00

3 lines
169 B
PowerShell

$data = Get-Content ha_states.json -Raw | ConvertFrom-Json
$sensors = $data | Where-Object { $_.entity_id -match '^sensor\.' }
$sensors | ForEach-Object { $_.entity_id }