mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-26 06:04:22 -08:00
add ham operator settings page
This commit is contained in:
parent
3569483d18
commit
146887b6a0
65
docs/software/settings/ham.md
Normal file
65
docs/software/settings/ham.md
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
id: ham
|
||||
title: Licensed (HAM) Operation
|
||||
sidebar_label: Licensed (HAM) Operation
|
||||
---
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
:::warning
|
||||
By changing these settings, you are self certifying that you are licensed to operate in the mode you have chosen. Failure to comply with your local regulations may result in fines.
|
||||
:::
|
||||
|
||||
## Overview
|
||||
|
||||
:::note
|
||||
This written US only, may or may not be applicable elsewhere.
|
||||
:::
|
||||
|
||||
<!--- Potential TODO Add tabs for other countries/regions --->
|
||||
|
||||
Meshtastic can be used by both unlicensed people and licensed operators. If you use Meshtastic with your ham radio license, there are additional privileges and restrictions to consider.
|
||||
|
||||
| Privileges | Restrictions |
|
||||
|:----------:|:------------:|
|
||||
| <ul><li>Additional Power</li><li>Higher gain antennas</li></ul> | <ul><li>Unencrypted</li><li>Identified with your ID</li></ul> |
|
||||
|
||||
|
||||
|
||||
## Settings
|
||||
|
||||
| Setting | Acceptable Values | Default |
|
||||
| :-----: | :---------------: | :-----: |
|
||||
| set-ham | `string`| `""`|
|
||||
|
||||
### set-ham
|
||||
|
||||
If you are a licensed HAM operator, you can set this variable to be your ID.
|
||||
|
||||
## Examples
|
||||
|
||||
:::warning
|
||||
By changing these settings, you are self certifying that you are licensed to operate in the mode you have chosen. Failure to comply with your local regulations may result in fines.
|
||||
:::
|
||||
|
||||
### Set HAM ID
|
||||
<Tabs
|
||||
groupId="settings"
|
||||
defaultValue="cli"
|
||||
values={[
|
||||
{label: 'CLI', value: 'cli'},
|
||||
{label: 'Android', value: 'android'},
|
||||
]}>
|
||||
<TabItem value="cli">
|
||||
|
||||
```bash title="Set HAM ID"
|
||||
meshtastic --set-ham KI1345
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="android">
|
||||
|
||||
TODO
|
||||
|
||||
</TabItem>
|
||||
</Tabs>
|
|
@ -114,6 +114,7 @@ module.exports = {
|
|||
"software/settings/overview",
|
||||
"software/settings/channel",
|
||||
"software/settings/gps",
|
||||
"software/settings/ham",
|
||||
"software/settings/mqtt",
|
||||
"software/settings/power",
|
||||
"software/settings/router",
|
||||
|
|
Loading…
Reference in a new issue