Skip to content

Commit

Permalink
Merge pull request #133 from pdxlocations/channel-descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern authored Sep 30, 2023
2 parents 4fd0ab6 + af76050 commit 08c064d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meshtastic-web",
"version": "2.2.5-0",
"version": "2.2.9-0",
"type": "module",
"description": "Meshtastic web client",
"license": "GPL-3.0-only",
Expand Down
22 changes: 5 additions & 17 deletions src/components/PageComponents/Channel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
type: "select",
name: "role",
label: "Role",
description: "Description",
description: "Device telemetry is sent over PRIMARY. Only one PRIMARY allowed",
properties: {
enumValue: Protobuf.Channel_Role,
},
Expand All @@ -61,40 +61,28 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
type: "password",
name: "settings.psk",
label: "pre-Shared Key",
description: "Description",
description: "16, or 32 bytes, \"0\"= no crypto, \"1\" = default key",
properties: {
// act
},
},
{
type: "number",
name: "settings.channelNum",
label: "Channel Number",
description: "Description",
},
{
type: "text",
name: "settings.name",
label: "Name",
description: "Description",
},
{
type: "number",
name: "settings.id",
label: "ID",
description: "Description",
description: "A unique name for the channel <12 bytes, leave blank for default",
},
{
type: "toggle",
name: "settings.uplinkEnabled",
label: "Uplink Enabled",
description: "Description",
description: "Send messages from the local mesh to MQTT",
},
{
type: "toggle",
name: "settings.downlinkEnabled",
label: "Downlink Enabled",
description: "Description",
description: "Send messages from MQTT to the local mesh",
},
],
},
Expand Down

0 comments on commit 08c064d

Please sign in to comment.