Skip to content

Portable Emergency Node Configuration

Example configuration for a go-kit node used during severe weather or outages.

owner:
  long_name: "JTXMesh Go-Kit"
  short_name: "JTXG"

device:
  node_name: "JTX-GOKIT-01"

radio:
  tx_power_dbm: 17
  region: "US"

position:
  gps_enabled: true
  fixed_position: false
  # More frequent updates can help with field coordination, but keep it reasonable
  position_broadcast_secs: 180

telemetry:
  enabled: true
  interval_secs: 900

channels:
  - index: 0
    name: "Primary"
    role: "PRIMARY"
    encrypted: true
    psk_base64: "PRIMARY_PSK_BASE64"

  - index: 1
    name: "Emergency"
    role: "SECONDARY"
    encrypted: true
    psk_base64: "EMERGENCY_PSK_BASE64"

  - index: 2
    name: "CERT"
    role: "SECONDARY"   # Enable for go-kit use by trained personnel
    encrypted: true
    psk_base64: "CERT_PSK_BASE64"

  - index: 3
    name: "Ops"
    role: "SECONDARY"
    encrypted: true
    psk_base64: "OPS_PSK_BASE64"

  - index: 4
    name: "Test"
    role: "DISABLED"
    encrypted: true
    psk_base64: "TEST_PSK_BASE64"

mqtt:
  enabled: false

power:
  is_router: false
  power_saving: false