mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-07-21 09:02:45 +02:00
add channel to firehouse
This commit is contained in:
@@ -662,17 +662,6 @@ Check the log file to see it the script run at the specific time.
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Testing
|
|
||||||
|
|
||||||
MeshView includes a test suite using pytest. For detailed testing documentation, see [README-testing.md](README-testing.md).
|
|
||||||
|
|
||||||
Quick start:
|
|
||||||
```bash
|
|
||||||
./env/bin/pytest tests/test_api_simple.py -v
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Technical Documentation
|
## Technical Documentation
|
||||||
|
|
||||||
For more detailed technical documentation including database migrations, architecture details, and advanced topics, see the [docs/](docs/) directory.
|
For more detailed technical documentation including database migrations, architecture details, and advanced topics, see the [docs/](docs/) directory.
|
||||||
|
|||||||
@@ -180,6 +180,7 @@
|
|||||||
"packet_id": "Packet ID",
|
"packet_id": "Packet ID",
|
||||||
"from": "From",
|
"from": "From",
|
||||||
"to": "To",
|
"to": "To",
|
||||||
|
"channel": "Channel",
|
||||||
"port": "Port",
|
"port": "Port",
|
||||||
"links": "Links",
|
"links": "Links",
|
||||||
"unknown_app": "UNKNOWN APP",
|
"unknown_app": "UNKNOWN APP",
|
||||||
|
|||||||
@@ -179,6 +179,7 @@
|
|||||||
"packet_id": "ID de paquete",
|
"packet_id": "ID de paquete",
|
||||||
"from": "De",
|
"from": "De",
|
||||||
"to": "A",
|
"to": "A",
|
||||||
|
"channel": "Canal",
|
||||||
"port": "Puerto",
|
"port": "Puerto",
|
||||||
"direct_to_mqtt": "Directo a MQTT",
|
"direct_to_mqtt": "Directo a MQTT",
|
||||||
"all_broadcast": "Todos"
|
"all_broadcast": "Todos"
|
||||||
|
|||||||
@@ -107,6 +107,7 @@
|
|||||||
<th data-translate-lang="packet_id">Packet ID</th>
|
<th data-translate-lang="packet_id">Packet ID</th>
|
||||||
<th data-translate-lang="from">From</th>
|
<th data-translate-lang="from">From</th>
|
||||||
<th data-translate-lang="to">To</th>
|
<th data-translate-lang="to">To</th>
|
||||||
|
<th data-translate-lang="channel">Channel</th>
|
||||||
<th data-translate-lang="port">Port</th>
|
<th data-translate-lang="port">Port</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -343,12 +344,13 @@ async function fetchUpdates() {
|
|||||||
|
|
||||||
<td>${from}</td>
|
<td>${from}</td>
|
||||||
<td>${to}</td>
|
<td>${to}</td>
|
||||||
|
<td>${pkt.channel || "—"}</td>
|
||||||
<td>${portLabel(pkt.portnum, pkt.payload, inlineLinks)}</td>
|
<td>${portLabel(pkt.portnum, pkt.payload, inlineLinks)}</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr class="payload-row">
|
<tr class="payload-row">
|
||||||
<td colspan="5" class="payload-cell">${safePayload}</td>
|
<td colspan="6" class="payload-cell">${safePayload}</td>
|
||||||
</tr>
|
</tr>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user