diff --git a/snippets/ev3/bluetooth_pc/.vscode/launch.json b/snippets/ev3/bluetooth_pc/.vscode/launch.json new file mode 100644 index 0000000..7190ee2 --- /dev/null +++ b/snippets/ev3/bluetooth_pc/.vscode/launch.json @@ -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" + } + ] +} diff --git a/snippets/ev3/bluetooth_pc/pcserver.py b/snippets/ev3/bluetooth_pc/pcserver.py new file mode 100644 index 0000000..f669ed6 --- /dev/null +++ b/snippets/ev3/bluetooth_pc/pcserver.py @@ -0,0 +1,2 @@ +#!/usr/bin/env python3 +print("Hello, world!")