Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions MeshMapper_WebClient.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"folders": [
{
"path": "."
}
]
}
Comment on lines +1 to +7
Copy link

Copilot AI Jan 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

VS Code workspace files are typically IDE-specific configuration files that should not be committed to version control. The .gitignore file already excludes .vscode/ directory for editor files. Consider adding *.code-workspace to .gitignore and removing this file from the repository. Individual developers can create their own workspace configurations locally if needed.

Suggested change
{
"folders": [
{
"path": "."
}
]
}

Copilot uses AI. Check for mistakes.
16 changes: 16 additions & 0 deletions content/device-models.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,22 @@
"txPower": 22,
"notes": "STM32WLE5 integrated LoRa"
},
{
"manufacturer": "Seeed Wio Tracker L1",
"shortName": "Seeed Wio Tracker L1",
"power": 0.3,
"platform": "nrf52",
"txPower": 22,
"notes": "Seeed Wio Tracker L1"
Copy link

Copilot AI Jan 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The notes field simply repeats the device name without providing additional technical information. Looking at other entries in the database, notes fields typically contain useful details about hardware specifications (e.g., "STM32WLE5 integrated LoRa" for Seeed Wio E5 Dev Board, "RAKwireless WisBlock Core" for RAK 4631, "GPS tracker variant" for LilyGo T-Beam). Consider adding more descriptive information about the Seeed Wio Tracker L1 hardware, such as the chipset, LoRa module type, or key features that distinguish it.

Suggested change
"notes": "Seeed Wio Tracker L1"
"notes": "nRF52-based GPS tracker with onboard LoRa"

Copilot uses AI. Check for mistakes.
},
{
"manufacturer": "Seeed Tracker T1000",
"shortName": "Seeed Tracker T1000",
"power": 0.3,
"platform": "nrf52",
"txPower": 22,
"notes": "Seeed Tracker T1000"
Copy link

Copilot AI Jan 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The notes field simply repeats the device name without providing additional technical information. Looking at other entries in the database, notes fields typically contain useful details about hardware specifications (e.g., "STM32WLE5 integrated LoRa" for Seeed Wio E5 Dev Board, "RAKwireless WisBlock Core" for RAK 4631, "GPS tracker variant" for LilyGo T-Beam). Consider adding more descriptive information about the Seeed Tracker T1000 hardware, such as the chipset, LoRa module type, or key features that distinguish it.

Suggested change
"notes": "Seeed Tracker T1000"
"notes": "nRF52 GNSS LoRa-E5 tracker (STM32WLE5 sub-GHz module)"

Copilot uses AI. Check for mistakes.
},
{
"manufacturer": "Xiao C3",
"shortName": "Xiao C3",
Expand Down