mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-28 06:59:45 -08:00
Documentation for Paxcounter
This commit is contained in:
parent
45a1e4e5f2
commit
fb93042136
80
docs/configuration/module/paxcounter.mdx
Normal file
80
docs/configuration/module/paxcounter.mdx
Normal file
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
id: paxcounter
|
||||
title: Paxcounter Module Usage
|
||||
sidebar_label: Paxcounter
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
|
||||
The Paxcounter module counts the number of people passing by a specific area. It is commonly used in retail stores, museums, and other public spaces to monitor foot traffic and gather valuable data for analysis.
|
||||
|
||||
In order to use this module, make sure your devices have firmware version 2.2.17 or higher.
|
||||
|
||||
## Paxcounter Module Config Values
|
||||
|
||||
### Enabled
|
||||
|
||||
Whether the Module is enabled.
|
||||
|
||||
### Update Interval
|
||||
|
||||
The interval in seconds of how often we can send a message to the mesh when a state change is detected.
|
||||
|
||||
## Paxcounter Module Client Availability
|
||||
|
||||
<Tabs
|
||||
groupId="settings"
|
||||
defaultValue="cli"
|
||||
values={[
|
||||
{label: 'Android', value: 'android'},
|
||||
{label: 'Apple', value: 'apple'},
|
||||
{label: 'CLI', value: 'cli'},
|
||||
{label: 'Web', value: 'web'},
|
||||
]}>
|
||||
<TabItem value="android">
|
||||
|
||||
:::info
|
||||
No Paxcounter Module config options are available for Android.
|
||||
:::
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="apple">
|
||||
|
||||
:::info
|
||||
No Paxcounter Module config options are available on the iOS, iPadOS and macOS app.
|
||||
:::
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="cli">
|
||||
|
||||
:::info
|
||||
|
||||
All Paxcounter Module config options are available in the python CLI version 2.2.16 and higher.
|
||||
|
||||
:::
|
||||
|
||||
Example commands are below:
|
||||
|
||||
```shell title="Enable/Disable the Paxcounter Module"
|
||||
meshtastic --set paxcounter.enabled true
|
||||
meshtastic --set paxcounter.enabled false
|
||||
```
|
||||
|
||||
```shell title="Set the Minimum Broadcast Interval to 90 seconds"
|
||||
meshtastic --set paxcounter.paxcounter_update_interval 900
|
||||
```
|
||||
|
||||
```shell title="Get the Paxcounter Module Configuration"
|
||||
meshtastic --get paxcounter
|
||||
```
|
||||
</TabItem>
|
||||
<TabItem value="web">
|
||||
|
||||
:::info
|
||||
|
||||
No Paxcounter module config options are available in the Web UI.
|
||||
|
||||
:::
|
||||
</TabItem>
|
||||
</Tabs>
|
Loading…
Reference in a new issue