HamParameters: Message<"meshtastic.HamParameters"> & {
    callSign: string;
    frequency: number;
    shortName: string;
    txPower: number;
}

Parameters for setting up Meshtastic for ameteur radio usage

Type declaration

  • callSign: string

    Amateur radio call sign, eg. KD2ABC

    from field: string call_sign = 1;

  • frequency: number

    The selected frequency of LoRA operation Please respect your local laws, regulations, and band plans. Ensure your radio is capable of operating of the selected frequency before setting this.

    from field: float frequency = 3;

  • shortName: string

    Optional short name of user

    from field: string short_name = 4;

  • txPower: number

    Transmit power in dBm at the LoRA transceiver, not including any amplification

    from field: int32 tx_power = 2;

from message meshtastic.HamParameters