diff --git a/src/components/PageComponents/ModuleConfig/Paxcounter.tsx b/src/components/PageComponents/ModuleConfig/Paxcounter.tsx index 9f2804cf..a05f2093 100644 --- a/src/components/PageComponents/ModuleConfig/Paxcounter.tsx +++ b/src/components/PageComponents/ModuleConfig/Paxcounter.tsx @@ -1,4 +1,4 @@ -import type { PaxcounterValidation } from "@app/validation/moduleConfig/paxcounter.tsx"; +import type { PaxcounterValidation } from "@app/validation/moduleConfig/paxcounter.ts"; import { create } from "@bufbuild/protobuf"; import { DynamicForm } from "@components/Form/DynamicForm.tsx"; import { useDevice } from "@core/stores/deviceStore.ts"; @@ -48,6 +48,30 @@ export const Paxcounter = () => { }, ], }, + { + type: "number", + name: "wifiThreshold", + label: "WiFi RSSI Threshold", + description: + "At what WiFi RSSI level should the counter increase. Defaults to -80.", + disabledBy: [ + { + fieldName: "enabled", + }, + ], + }, + { + type: "number", + name: "bleThreshold", + label: "BLE RSSI Threshold", + description: + "At what BLE RSSI level should the counter increase. Defaults to -80.", + disabledBy: [ + { + fieldName: "enabled", + }, + ], + }, ], }, ]}