Fresh start - excluded large ROM JSON files

This commit is contained in:
OpenClaw Agent
2026-04-11 09:45:12 -05:00
commit 5deb387aa6
395 changed files with 47744 additions and 0 deletions

3
scripts/list-sensors.ps1 Normal file
View File

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