-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test on download and install lib on usage.
Both test that when user does not wnat to download install Sloeber does not do it and the reverse.
- Loading branch information
jan
committed
Nov 24, 2024
1 parent
6b02f9d
commit a50ceea
Showing
4 changed files
with
81 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
io.sloeber.tests/src/templates/onlyInstallLibraryWhenAllowed/sketch.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "Arduino.h" | ||
#include "SD.h" | ||
//The setup function is called once at startup of the sketch | ||
void setup() | ||
{ | ||
// Add your initialization code here | ||
} | ||
|
||
// The loop function is called in an endless loop | ||
void loop() | ||
{ | ||
//Add your repeated code here | ||
} | ||
|