ev3/snippets/bluetooth_pc: hello world launch

This creates an empty hello world style Python3 example
This commit is contained in:
Laurens Valk
2020-05-07 11:56:36 +02:00
parent 4da888ec52
commit 21eac3abda
2 changed files with 17 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
// 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": "PC Bluetooth Example",
"type": "python",
"request": "launch",
"program": "pcserver.py",
"console": "integratedTerminal"
}
]
}
+2
View File
@@ -0,0 +1,2 @@
#!/usr/bin/env python3
print("Hello, world!")