From 9da2b2cca7c8f7ee45d9ce0d475cfb3ed27cf9b3 Mon Sep 17 00:00:00 2001 From: thek4n Date: Sat, 13 Jun 2026 19:14:45 +0300 Subject: [PATCH] fixed dependencies --- justfile | 6 ++++++ libs.txt | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 libs.txt diff --git a/justfile b/justfile index 629e1e7..f43043d 100644 --- a/justfile +++ b/justfile @@ -19,3 +19,9 @@ upload: monitor: arduino-cli monitor --port "{{PORT}}" --config 115200 + + +alias deps := libs +libs: + arduino-cli core update-index + xargs -a libs.txt arduino-cli lib install diff --git a/libs.txt b/libs.txt new file mode 100644 index 0000000..d0e7140 --- /dev/null +++ b/libs.txt @@ -0,0 +1,2 @@ +WebSockets@2.7.2 +ArduinoJson@7.4.2