Skip to content

Commit

Permalink
Changes to incorporate verbose mode in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky-luke-98 committed Apr 27, 2024
1 parent 738396d commit b8e87ab
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/compile-sketches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ jobs:
- name: Compile sketches
uses: arduino/compile-sketches@v1
with:
fqbn: "arduino:avr:mega"
sketch-paths: |
- sketches/final_code_interactive
libraries: |
- name: Adafruit NeoPixel
version: 1.12.0
verbose: true
enable-warnings-report: true
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# gitignore for LEDBeerPong

*.pptx
*.pptx

# VS code specific files
*.vscode
3 changes: 0 additions & 3 deletions libraries.txt

This file was deleted.

4 changes: 4 additions & 0 deletions libraries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# libraries necessary for the project

- name: Adafruit NeoPixel
version: 1.12.0
3 changes: 0 additions & 3 deletions sketches/final_code_interactive/final_code_interactive.ino
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ Adafruit_NeoPixel pix = Adafruit_NeoPixel(LED_COUNT, LED_PIN, NEO_GRB + NEO_KHZ8
// definition of variables

int hellig[10] = {};
static int summe[10] = {};
static int anzahl = 0;
int start[10] = {};
int reihenfolge[] = {0, 1, 3, 4, 6, 7, 9, 10, 12, 13}; // pins for the photoresistors
static float threshold = 0.8;
int writ[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
Expand Down

0 comments on commit b8e87ab

Please sign in to comment.