feat: Update .gitignore to include data directory and remove example sketch.ino
parent
f2b275c03d
commit
b72846c969
|
|
@ -78,3 +78,4 @@ wokwi-libs/*/.cache/
|
||||||
.history/*
|
.history/*
|
||||||
.daveagent/*
|
.daveagent/*
|
||||||
example_zip/*
|
example_zip/*
|
||||||
|
data/*
|
||||||
|
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
// Arduino Blink Example
|
|
||||||
void setup() {
|
|
||||||
pinMode(LED_BUILTIN, OUTPUT);
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop() {
|
|
||||||
digitalWrite(LED_BUILTIN, HIGH);
|
|
||||||
delay(1000);
|
|
||||||
digitalWrite(LED_BUILTIN, LOW);
|
|
||||||
delay(1000);
|
|
||||||
}
|
|
||||||
|
|
@ -22,3 +22,4 @@ dist-ssr
|
||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?
|
*.sw?
|
||||||
|
data/*
|
||||||
Loading…
Reference in New Issue