diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-22 01:52:28 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-01-22 11:31:04 +0800 |
commit | 712ac399081339fbbe6cd652950e8e07a6ad0e9b (patch) | |
tree | 265be6f6d87d8bb48655ea0af9b8e92623b94268 /.vscode | |
parent | 5dce4114bf8750e9e15696600f1711830877ba96 (diff) | |
download | dexon-iot-firmware-pio-712ac399081339fbbe6cd652950e8e07a6ad0e9b.tar.gz dexon-iot-firmware-pio-712ac399081339fbbe6cd652950e8e07a6ad0e9b.tar.zst dexon-iot-firmware-pio-712ac399081339fbbe6cd652950e8e07a6ad0e9b.zip |
BLE wifi and contract deployment working
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/extensions.json | 7 | ||||
-rw-r--r-- | .vscode/tasks.json | 14 |
2 files changed, 21 insertions, 0 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..8281e64 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{
+ // See http://go.microsoft.com/fwlink/?LinkId=827846
+ // for the documentation about the extensions.json format
+ "recommendations": [
+ "platformio.platformio-ide"
+ ]
+}
\ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..c4f0974 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,14 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "type": "PlatformIO", + "task": "Upload and Monitor", + "problemMatcher": [ + "$platformio" + ] + } + ] +}
\ No newline at end of file |