gitextract_pta7yrh3/ ├── .eslintrc.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── feature-request.md │ │ └── support-request.md │ └── pull_request_template.md ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── Cmd4Accessory.js ├── Cmd4Platform.js ├── Cmd4PriorityPollingQueue.js ├── Extras/ │ ├── Cmd4Scripts/ │ │ ├── CheckYourScript.sh │ │ ├── Examples/ │ │ │ ├── AirPurifier.js │ │ │ ├── AnyDevice │ │ │ ├── DoorLock.sh │ │ │ ├── ExampleJavaScript_template.js │ │ │ ├── ExampleShellScript_template.sh │ │ │ ├── PS4.sh │ │ │ ├── PS5.sh │ │ │ ├── SecuritySystem.js │ │ │ ├── advanced_ping.sh │ │ │ ├── basic_ping.sh │ │ │ ├── middleWare.sh │ │ │ └── wakeonlan.sh │ │ └── State.js │ ├── config.json │ ├── config.min.json │ └── jsmin.c ├── LICENSE ├── README.md ├── RUNNING_CHANGELOG.md ├── cmd4Constants.js ├── cmd4Settings.js ├── commitlint.config.js ├── docs/ │ ├── AdvancedTroubleShooting.md │ ├── Developers.md │ ├── autoGenerated/ │ │ └── CMD4_AccessoryDescriptions.html │ └── index.html ├── index.js ├── lib/ │ ├── CMD4_ACC_TYPE_ENUM.js │ ├── CMD4_CHAR_TYPE_ENUMS.js │ └── CMD4_DEVICE_TYPE_ENUM.js ├── package.json ├── postinstall.js ├── test/ │ ├── CMD4_ACC_TYPE_ENUM.js │ ├── CMD4_CHAR_TYPE_ENUMS.js │ ├── CMD4_DEVICE_TYPE_ENUM.js │ ├── Cmd4Accessory.js │ ├── Cmd4AccessoryGetValue.js │ ├── Cmd4AccessorySetValue.js │ ├── Cmd4Mode.js │ ├── Cmd4Platform.js │ ├── Cmd4PlatformRestartTests.js │ ├── Cmd4PriorityPollingQueue.js │ ├── Cmd4Storage.js │ ├── HV.js │ ├── Logger.js │ ├── VariableTimer.js │ ├── allTests │ ├── async-dump.js │ ├── cmd4Constants.js │ ├── configHasCharacteristicProps.js │ ├── configTest.js │ ├── echoScripts/ │ │ ├── echo_0 │ │ ├── echo_1 │ │ ├── echo_ACTIVE │ │ ├── echo_DISABLED │ │ ├── echo_ENABLED │ │ ├── echo_INACTIVE │ │ ├── echo_On │ │ ├── echo_after5seconds │ │ ├── echo_errorToStderr │ │ ├── echo_false │ │ ├── echo_nothing │ │ ├── echo_null │ │ ├── echo_nullAndErrorToStderr │ │ ├── echo_quoted0 │ │ ├── echo_quoted1 │ │ ├── echo_quotedFALSE │ │ ├── echo_quotedNULL │ │ ├── echo_quotedNothing │ │ ├── echo_quotedTRUE │ │ ├── echo_too_much │ │ ├── echo_true │ │ ├── echo_true_withRcOf1 │ │ ├── justExitWithRCof0 │ │ ├── justExitWithRCof1 │ │ ├── runToTimeoutRcOf0 │ │ ├── runToTimeoutRcOf1 │ │ └── testGetSetValues.js │ ├── extractKeyValue.js │ ├── fakeGato.js │ ├── getAccessoryNameFunctions.js │ ├── getAccessoryUUID.js │ ├── getSetAllValues.js │ ├── indexOfEnum.js │ ├── initPluginTest.js │ ├── internalRelatedTargetTests.js │ ├── isAccDirective.js │ ├── isCmd4Directive.js │ ├── isDevDirective.js │ ├── isJSON.js │ ├── isNumeric.js │ ├── loadPluginTest.js │ ├── mocha-setup │ ├── pollingTest.js │ ├── sanityTests │ ├── systemTest.js │ ├── testAdvAirGetSet.js │ ├── testOurConfig.json.js │ ├── transposeCMD4Props.js │ ├── trueTypeOf.js │ └── versionChecker.js ├── tools/ │ ├── Cmd4AccDocGenerator │ ├── generateChangeLog │ └── whereIsConstant └── utils/ ├── Cmd4Storage.js ├── HV.js ├── Logger.js ├── VariableTimer.js ├── createAccessorysInformationService.js ├── extractKeyValue.js ├── getAccessoryNameFunctions.js ├── getAccessoryUUID.js ├── indexOfEnum.js ├── indexOfEnumLintTest.js ├── isAccDirective.js ├── isCmd4Directive.js ├── isDevDirective.js ├── isJSON.js ├── isNumeric.js ├── lcFirst.js ├── transposeCMD4Props.js ├── trueTypeOf.js ├── ucFirst.js └── versionChecker.js