mirror of
https://github.com/meshtastic/python.git
synced 2026-01-04 05:47:57 -05:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "meshtastic BLE",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "meshtastic",
|
|
"justMyCode": false,
|
|
"args": ["--debug", "--ble", "--device", "24:62:AB:DD:DF:3A"]
|
|
},
|
|
{
|
|
"name": "meshtastic info",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "meshtastic",
|
|
"justMyCode": true,
|
|
"args": ["--debug", "--info"]
|
|
},
|
|
{
|
|
"name": "meshtastic shell",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "meshtastic",
|
|
"justMyCode": true,
|
|
"args": ["--debug", "--seriallog", "stdout"]
|
|
},
|
|
{
|
|
"name": "meshtastic test",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "meshtastic",
|
|
"justMyCode": true,
|
|
"args": [ "--debug", "--test"]
|
|
},
|
|
{
|
|
"name": "meshtastic sendtext",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "meshtastic",
|
|
"justMyCode": true,
|
|
"args": ["--debug", "--sendtext", "pytest"]
|
|
}
|
|
]
|
|
}
|