Use local libs

This commit is contained in:
Rafa 2025-05-10 16:36:58 +01:00
parent 40ba2ca4d7
commit c9f56c7f3c
2 changed files with 2 additions and 2 deletions

2
.vscode/run vendored
View File

@ -1,6 +1,6 @@
#!/bin/bash
./bin/arduino-cli compile -fqbn arduino:avr:uno code --libraries $HOME/.arduino15/libraries/ --build-path ./build --clean
./bin/arduino-cli compile --fqbn arduino:avr:uno code --libraries ./libraries/ --build-path ./build --clean
echo "Starting simulation..."

View File

@ -4,7 +4,7 @@ void setup() {
}
void loop() {
Serial.println("Hello Teste para o TP3 :)!");
Serial.println("Hello Teste para o TP2 :)!");
digitalWrite(LED_BUILTIN, HIGH);
delay(500);
digitalWrite(LED_BUILTIN, LOW);