From ab7958696a2ee424071961e9924456cb3a16a856 Mon Sep 17 00:00:00 2001 From: bradleyharper Date: Wed, 3 Jun 2020 20:30:49 -0500 Subject: [PATCH 1/3] added gitignore to git rid of idea and vscode presets so it wont mess with your personal IDE settings... forgot about that --- .gitignore | 2 ++ .idea/.gitignore | 5 +++++ .idea/arduinoLaunchControl.iml | 12 ++++++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ 6 files changed, 39 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/arduinoLaunchControl.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8cd0df3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode +.idea \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/arduinoLaunchControl.iml b/.idea/arduinoLaunchControl.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/arduinoLaunchControl.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..28a804d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..61bd765 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From a17c72445cfd8abcdefbaa138ef924ec0df0a101 Mon Sep 17 00:00:00 2001 From: bradleyharper Date: Wed, 3 Jun 2020 20:33:02 -0500 Subject: [PATCH 2/3] gitignore better be working now... --- .idea/.gitignore | 5 ----- .idea/arduinoLaunchControl.iml | 12 ------------ .idea/misc.xml | 6 ------ .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ .vscode/arduino.json | 5 ----- .vscode/c_cpp_properties.json | 16 ---------------- 7 files changed, 58 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/arduinoLaunchControl.iml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 .vscode/arduino.json delete mode 100644 .vscode/c_cpp_properties.json diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index b58b603..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/arduinoLaunchControl.iml b/.idea/arduinoLaunchControl.iml deleted file mode 100644 index 24643cc..0000000 --- a/.idea/arduinoLaunchControl.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 28a804d..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 61bd765..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.vscode/arduino.json b/.vscode/arduino.json deleted file mode 100644 index 29503a7..0000000 --- a/.vscode/arduino.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "board": "arduino:avr:uno", - "port": "COM3", - "sketch": "sketch_aug10alaunchControl.ino" -} \ No newline at end of file diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index c7bc753..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "configurations": [ - { - "name": "Win32", - "includePath": [ - "C:\\Program Files (x86)\\Arduino\\tools\\**", - "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\**" - ], - "forcedInclude": [ - "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Arduino.h" - ], - "intelliSenseMode": "msvc-x64" - } - ], - "version": 4 -} \ No newline at end of file From 1a50556ea042b2b4d1993286636d59f2d93ad076 Mon Sep 17 00:00:00 2001 From: bradleyharper Date: Thu, 4 Jun 2020 22:44:52 -0500 Subject: [PATCH 3/3] added sketch inside folder so the arduino IDE can open it without the annoying folder prompt. You're welcome --- .../sketch_aug10alaunchControl.ino | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename sketch_aug10alaunchControl.ino => sketch_aug10alaunchControl/sketch_aug10alaunchControl.ino (100%) diff --git a/sketch_aug10alaunchControl.ino b/sketch_aug10alaunchControl/sketch_aug10alaunchControl.ino similarity index 100% rename from sketch_aug10alaunchControl.ino rename to sketch_aug10alaunchControl/sketch_aug10alaunchControl.ino