From 32cd179a692d87c23427af0b85d7cdecb5bf5757 Mon Sep 17 00:00:00 2001 From: DeltaLima Date: Fri, 13 Dec 2024 21:45:28 +0100 Subject: [PATCH] cangrow.sh fix typo, remove ArduinoJson because broke submodule --- Arduino/CanGrow/lib/ArduinoJson | 1 - cangrow.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 160000 Arduino/CanGrow/lib/ArduinoJson diff --git a/Arduino/CanGrow/lib/ArduinoJson b/Arduino/CanGrow/lib/ArduinoJson deleted file mode 160000 index e33e78d..0000000 --- a/Arduino/CanGrow/lib/ArduinoJson +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e33e78d202d03f45a63fb8d44fae25eef1ae8bd7 diff --git a/cangrow.sh b/cangrow.sh index 337f037..99ba2f4 100755 --- a/cangrow.sh +++ b/cangrow.sh @@ -4,7 +4,7 @@ test -z $TTY && TTY="/dev/ttyUSB0" test -z $IP && IP="192.168.4.20" -VER="$(grep "define CANGROW_VER" Arduino/CanGrow/CanGrow_Version.ino | cut -d \" -f2 |sed -e 's/\"//g')" +VER="$(grep "define CANGROW_VER" Arduino/CanGrow/CanGrow_Version.h | cut -d \" -f2 |sed -e 's/\"//g')" BUILD="$(git rev-parse --short HEAD)-$(date '+%Y%m%d%H%M%S')" ACLI="$HOME/.local/bin/arduino-cli"