Initial commit, WIP

This gets the module far enough along that it can use the library, find and connect to a unit, and issue requests to it.

This is a copy/paste of the ScreenLogic version, so I expect a lot of changes/renames will need to happen still.
This commit is contained in:
2025-01-04 19:28:53 -06:00
commit f911f42063
15 changed files with 3449 additions and 0 deletions

8
eslint.config.mjs Normal file
View File

@ -0,0 +1,8 @@
import eslint from "@eslint/js";
export default [
eslint.configs.recommended,
{
ignores: ["eslint.config.mjs"]
}
];