Skip to content

Commit

Permalink
ci: test with simple sketch
Browse files Browse the repository at this point in the history
  • Loading branch information
felixerdy committed Apr 29, 2024
1 parent 777d87c commit 8d48088
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: esp32:esp32
source-url: https://espressif.github.io/arduino-esp32/package_esp32_index.json
sketch-paths: |
- ./sensebox-bike-atrai
- ./blink
libraries: |
- SenseBoxBLE
- SDConfig
Expand Down
10 changes: 10 additions & 0 deletions blink/blink.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
void setup() {
pinMode(PIN_LED, OUTPUT);
}

void loop() {
digitalWrite(PIN_LED, HIGH);
delay(1000);
digitalWrite(PIN_LED, LOW);
delay(1000);
}

0 comments on commit 8d48088

Please sign in to comment.