mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 07:34:11 -08:00
added examples
This commit is contained in:
parent
7c2b950dc3
commit
b687f80eb3
|
@ -60,21 +60,259 @@ Specifies how long in milliseconds you would like your external circuit triggere
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
### Enable/Disable the plugin
|
||||||
<Tabs
|
<Tabs
|
||||||
groupId="settings"
|
groupId="settings"
|
||||||
defaultValue="cli"
|
defaultValue="cli"
|
||||||
values={[
|
values={[
|
||||||
{label: 'CLI', value: 'cli'},
|
{label: 'CLI', value: 'cli'},
|
||||||
{label: 'Android', value: 'android'},
|
{label: 'Android', value: 'android'},
|
||||||
|
{label: 'iOS', value: 'iOS'},
|
||||||
|
{label: 'Web', value: 'web'},
|
||||||
]}>
|
]}>
|
||||||
<TabItem value="cli">
|
<TabItem value="cli">
|
||||||
|
|
||||||
TODO
|
```bash title="Enable Plugin"
|
||||||
|
meshtastic --set ext_notification_plugin_enabled true
|
||||||
|
```
|
||||||
|
```bash title="Disable Plugin"
|
||||||
|
meshtastic --set ext_notification_plugin_enabled false
|
||||||
|
```
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="android">
|
<TabItem value="android">
|
||||||
|
|
||||||
TODO
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="iOS">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="web">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
### Specify GPIO for circuit to monitor
|
||||||
|
<Tabs
|
||||||
|
groupId="settings"
|
||||||
|
defaultValue="cli"
|
||||||
|
values={[
|
||||||
|
{label: 'CLI', value: 'cli'},
|
||||||
|
{label: 'Android', value: 'android'},
|
||||||
|
{label: 'iOS', value: 'iOS'},
|
||||||
|
{label: 'Web', value: 'web'},
|
||||||
|
]}>
|
||||||
|
<TabItem value="cli">
|
||||||
|
|
||||||
|
:::note
|
||||||
|
Replace `GPIO` in the below command with the GPIO number your circuit is attached to.
|
||||||
|
:::
|
||||||
|
|
||||||
|
```bash title="Specify GPIO that circuit is connected to"
|
||||||
|
meshtastic --set ext_notification_plugin_output GPIO
|
||||||
|
```
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="android">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="iOS">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="web">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
|
||||||
|
### Specify High/Low GPIO triggers circuit
|
||||||
|
<Tabs
|
||||||
|
groupId="settings"
|
||||||
|
defaultValue="cli"
|
||||||
|
values={[
|
||||||
|
{label: 'CLI', value: 'cli'},
|
||||||
|
{label: 'Android', value: 'android'},
|
||||||
|
{label: 'iOS', value: 'iOS'},
|
||||||
|
{label: 'Web', value: 'web'},
|
||||||
|
]}>
|
||||||
|
<TabItem value="cli">
|
||||||
|
|
||||||
|
```bash title="GPIO active high"
|
||||||
|
meshtastic --set ext_notification_plugin_active true
|
||||||
|
```
|
||||||
|
```bash title="GPIO active low (default)"
|
||||||
|
meshtastic --set ext_notification_plugin_active false
|
||||||
|
```
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="android">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="iOS">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="web">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
|
||||||
|
### Specify how many milliseconds to trigger circuit
|
||||||
|
<Tabs
|
||||||
|
groupId="settings"
|
||||||
|
defaultValue="cli"
|
||||||
|
values={[
|
||||||
|
{label: 'CLI', value: 'cli'},
|
||||||
|
{label: 'Android', value: 'android'},
|
||||||
|
{label: 'iOS', value: 'iOS'},
|
||||||
|
{label: 'Web', value: 'web'},
|
||||||
|
]}>
|
||||||
|
<TabItem value="cli">
|
||||||
|
|
||||||
|
```bash title="Set to default (1000ms)"
|
||||||
|
meshtastic --set ext_notification_plugin_output_ms 0
|
||||||
|
```
|
||||||
|
```bash title="Set to other value"
|
||||||
|
meshtastic --set ext_notification_plugin_output_ms 1500
|
||||||
|
```
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="android">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="iOS">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="web">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
|
||||||
|
### Enable/Disable alert on incoming bell
|
||||||
|
<Tabs
|
||||||
|
groupId="settings"
|
||||||
|
defaultValue="cli"
|
||||||
|
values={[
|
||||||
|
{label: 'CLI', value: 'cli'},
|
||||||
|
{label: 'Android', value: 'android'},
|
||||||
|
{label: 'iOS', value: 'iOS'},
|
||||||
|
{label: 'Web', value: 'web'},
|
||||||
|
]}>
|
||||||
|
<TabItem value="cli">
|
||||||
|
|
||||||
|
```bash title="Enable alert on incoming bell"
|
||||||
|
meshtastic --set ext_notification_plugin_alert_bell true
|
||||||
|
```
|
||||||
|
```bash title="Disable alert on incoming bell"
|
||||||
|
meshtastic --set ext_notification_plugin_alert_bell false
|
||||||
|
```
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="android">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="iOS">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="web">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
|
||||||
|
### Enable/Disable Alert on incoming message
|
||||||
|
<Tabs
|
||||||
|
groupId="settings"
|
||||||
|
defaultValue="cli"
|
||||||
|
values={[
|
||||||
|
{label: 'CLI', value: 'cli'},
|
||||||
|
{label: 'Android', value: 'android'},
|
||||||
|
{label: 'iOS', value: 'iOS'},
|
||||||
|
{label: 'Web', value: 'web'},
|
||||||
|
]}>
|
||||||
|
<TabItem value="cli">
|
||||||
|
|
||||||
|
```bash title="Enable alert on incoming message"
|
||||||
|
meshtastic --set ext_notification_plugin_alert_message true
|
||||||
|
```
|
||||||
|
```bash title="Disable alert on incoming message"
|
||||||
|
meshtastic --set ext_notification_plugin_alert_message false
|
||||||
|
```
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="android">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="iOS">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="web">
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page.
|
||||||
|
:::
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
Loading…
Reference in a new issue