-
Notifications
You must be signed in to change notification settings - Fork 0
Add new device models for Seeed Wio Tracker L1 and Seeed Tracker T1000 #176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "folders": [ | ||
| { | ||
| "path": "." | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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" | ||||||
|
||||||
| "notes": "Seeed Wio Tracker L1" | |
| "notes": "nRF52-based GPS tracker with onboard LoRa" |
Copilot
AI
Jan 13, 2026
There was a problem hiding this comment.
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.
| "notes": "Seeed Tracker T1000" | |
| "notes": "nRF52 GNSS LoRa-E5 tracker (STM32WLE5 sub-GHz module)" |
There was a problem hiding this comment.
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.