diff --git a/.gitignore b/.gitignore index e69de29..c795b05 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +build \ No newline at end of file diff --git a/.vscode/arduino.json b/.vscode/arduino.json new file mode 100644 index 0000000..37af711 --- /dev/null +++ b/.vscode/arduino.json @@ -0,0 +1,7 @@ +{ + "configuration": "cpu=atmega2560", + "board": "arduino:avr:mega", + "sketch": "Porg_Control_System.ino", + "output": "build", + "programmer": "avrisp" +} diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..34db081 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**", + "C:/Program Files (x86)/Arduino/**", + "C:/Users/benja/OneDrive/Documents/Arduino/libraries/**" + ], + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "windows-msvc-x64", + } + ], + "version": 4 +} \ No newline at end of file diff --git a/Body/Body.ino b/Body/Body.ino deleted file mode 100644 index b88b8ae..0000000 --- a/Body/Body.ino +++ /dev/null @@ -1,7 +0,0 @@ -void setup() -{ -} - -void loop() -{ -} \ No newline at end of file diff --git a/Dome/Dome.ino b/Dome/Dome.ino deleted file mode 100644 index b88b8ae..0000000 --- a/Dome/Dome.ino +++ /dev/null @@ -1,7 +0,0 @@ -void setup() -{ -} - -void loop() -{ -} \ No newline at end of file diff --git a/Porg_Control_System.ino b/Porg_Control_System.ino new file mode 100644 index 0000000..44f80b4 --- /dev/null +++ b/Porg_Control_System.ino @@ -0,0 +1,11 @@ +#include +#include +#include + +void setup() +{ +} + +void loop() +{ +} diff --git a/Project.code-workspace b/Project.code-workspace index 164446c..4cb79c8 100644 --- a/Project.code-workspace +++ b/Project.code-workspace @@ -1,14 +1,5 @@ { "folders": [ - { - "path": "Body" - }, - { - "path": "Dome" - }, - { - "path": "Web" - }, { "path": "." }, @@ -22,10 +13,7 @@ "settings": { "files.exclude": { ".github": true, - "docs": true, - "Body": true, - "Dome": true, - "Web": true + "docs": true } }, "tasks": { diff --git a/Web/Web.ino b/Web/Web.ino deleted file mode 100644 index b88b8ae..0000000 --- a/Web/Web.ino +++ /dev/null @@ -1,7 +0,0 @@ -void setup() -{ -} - -void loop() -{ -} \ No newline at end of file