Skip to content

Commit

Permalink
feat: add Zniffer support (#6651)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone authored May 6, 2024
1 parent 25935f3 commit f1eec7c
Show file tree
Hide file tree
Showing 34 changed files with 4,088 additions and 43 deletions.
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,29 @@
],
"console": "integratedTerminal",
"disableOptimisticBPs": true
},
{
"type": "node",
"request": "launch",
"name": "Run Zniffer",
"port": 9229,
"runtimeExecutable": "yarn",
"runtimeArgs": [
"node",
"--async-stack-traces",
"-r",
"./maintenance/esbuild-register.js",
"${workspaceFolder}/test/run_zniffer.ts"
],
"env": {
"NODE_ENV": "development"
// "NO_CACHE": "true"
// "LOGLEVEL": "info"
},
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"preLaunchTask": "npm: build"
}
]
}
2 changes: 2 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- [Values and Metadata](api/valueid.md)
- [ConfigManager](api/config-manager.md)
- [Utilities](api/utils.md)
- [Zniffer](api/zniffer.md)
- [Command Classes](api/CCs/index.md)
<!-- AUTO-GENERATE: CC Links -->

Expand All @@ -50,6 +51,7 @@
- [A lock (or any secure device) cannot be controlled](troubleshooting/lock-uncontrollable.md)
- [Some values are missing](troubleshooting/missing-values.md)
- [Upgrading the controller firmware](troubleshooting/otw-upgrade.md)
- [Creating a Zniffer](troubleshooting/zniffer.md)

- Device Configuration Files

Expand Down
2 changes: 2 additions & 0 deletions docs/api/CCs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- [Values and Metadata](api/valueid.md)
- [ConfigManager](api/config-manager.md)
- [Utilities](api/utils.md)
- [Zniffer](api/zniffer.md)
- [Command Classes](api/CCs/index.md)

- [Alarm Sensor CC](api/CCs/AlarmSensor.md)
Expand Down Expand Up @@ -112,6 +113,7 @@
- [A lock (or any secure device) cannot be controlled](troubleshooting/lock-uncontrollable.md)
- [Some values are missing](troubleshooting/missing-values.md)
- [Upgrading the controller firmware](troubleshooting/otw-upgrade.md)
- [Creating a Zniffer](troubleshooting/zniffer.md)

- Device Configuration Files

Expand Down
Loading

0 comments on commit f1eec7c

Please sign in to comment.