Files
meshtastic_mqtt_server/meshmap_frontend/src/components/HelpPage.vue
T
2026-06-04 16:07:10 +08:00

42 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<section class="help-page">
<div class="panel">
<div class="panel-header">
<div>
<p class="eyebrow">Help</p>
<h2>如何连接 MQTT</h2>
</div>
</div>
<div class="help-content">
<section>
<h3>连接地址</h3>
<p> Meshtastic 设备连接到本服务提供的 MQTT broker</p>
<ul>
<li>默认地址<strong>mesh.gat-iot.com</strong></li>
<li>默认端口<strong>1883</strong></li>
<li>用户名称<strong>meshdev</strong></li>
<li>密码<strong>large4cats</strong></li>
</ul>
</section>
<section>
<h3>频道加密要求</h3>
<p>为了让服务能够解析 Meshtastic MQTT payload频道需要满足以下任一条件</p>
<ul>
<li>频道不加密</li>
<li>使用 Meshtastic 默认 PSK<strong>AQ==</strong></li>
</ul>
<p>如果使用自定义加密密钥数据可能会被判定为无法解密并丢弃</p>
</section>
<section>
<h3>反馈问题</h3>
<p>如果遇到 bug请在 GitHub <a href="https://github.com/wuwenfengmi1998/meshtastic_mqtt_server" target="_blank" rel="noopener noreferrer">提交 issue</a>或联系邮箱 <a href="mailto:kevin@lmve.net">kevin@lmve.net</a></p>
</section>
</div>
</div>
</section>
</template>