Skip to content

Commit

Permalink
START
Browse files Browse the repository at this point in the history
  • Loading branch information
HoleInOneGolfer committed Aug 11, 2023
1 parent 71b6577 commit ac95b8a
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
7 changes: 7 additions & 0 deletions .vscode/arduino.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"configuration": "cpu=atmega2560",
"board": "arduino:avr:mega",
"sketch": "Porg_Control_System.ino",
"output": "build",
"programmer": "avrisp"
}
16 changes: 16 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -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
}
7 changes: 0 additions & 7 deletions Body/Body.ino

This file was deleted.

7 changes: 0 additions & 7 deletions Dome/Dome.ino

This file was deleted.

11 changes: 11 additions & 0 deletions Porg_Control_System.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <Arduino.h>
#include <Servo.h>
#include <Adafruit_NeoPixel.h>

void setup()
{
}

void loop()
{
}
14 changes: 1 addition & 13 deletions Project.code-workspace
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
{
"folders": [
{
"path": "Body"
},
{
"path": "Dome"
},
{
"path": "Web"
},
{
"path": "."
},
Expand All @@ -22,10 +13,7 @@
"settings": {
"files.exclude": {
".github": true,
"docs": true,
"Body": true,
"Dome": true,
"Web": true
"docs": true
}
},
"tasks": {
Expand Down
7 changes: 0 additions & 7 deletions Web/Web.ino

This file was deleted.

0 comments on commit ac95b8a

Please sign in to comment.