diff --git a/README.md b/README.md index f1e5de1353..b0982f5408 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,9 @@ Zigbee2MQTT is made up of three modules, each developed in its own Github projec ### Developing Zigbee2MQTT uses TypeScript (partially for now). Therefore after making changes to files in the `lib/` directory you need to recompile Zigbee2MQTT. This can be done by executing `pnpm run build`. For faster development instead of running `pnpm run build` you can run `pnpm run build-watch` in another terminal session, this will recompile as you change files. -In first time before building you need to run `pnpm install --include=dev` -Before submitting changes run `pnpm run test-with-coverage`, `pnpm run pretty:check` and `pnpm run eslint` + +Before running any of the commands, you'll first need to run `pnpm install --include=dev`. +Before submitting changes run `pnpm run test:coverage`, `pnpm run pretty:check` and `pnpm run eslint` ## Supported devices diff --git a/lib/util/settings.schema.json b/lib/util/settings.schema.json index 2382568b53..3a73e5e720 100644 --- a/lib/util/settings.schema.json +++ b/lib/util/settings.schema.json @@ -760,10 +760,17 @@ "title": "QoS", "description": "QoS level for MQTT messages of this device" }, + "throttle": { + "type": "number", + "title": "Throttle", + "description": "The minimum time between payloads in seconds. Payloads received whilst the device is being throttled will be discarded", + "requiresRestart": true + }, "debounce": { "type": "number", "title": "Debounce", - "description": "Debounces messages of this device" + "description": "Debounces messages of this device", + "requiresRestart": true }, "debounce_ignore": { "type": "array",