Browse Source

Renaming new ota utilities

fastled
Xose Pérez 7 years ago
parent
commit
40155e79cc
2 changed files with 66 additions and 1 deletions
  1. +1
    -1
      code/ota_flash.sh
  2. +65
    -0
      code/ota_list.sh

code/flash.sh → code/ota_flash.sh View File

@ -170,7 +170,7 @@ if [ "$auth" == "" ]; then
fi
if [ "$flags" == "" ]; then
read -p "Extra flags for the build: " flags
read -p "Extra flags for the build: " -e -i "-DTELNET_ONLY_AP=0" flags
fi
read -p "Environment to build: " -e -i "esp8266-1m-ota" env

+ 65
- 0
code/ota_list.sh View File

@ -0,0 +1,65 @@
#!/bin/bash
exists() {
command -v "$1" >/dev/null 2>&1
}
echo_pad() {
string=$1
pad=$2
printf '%s' "$string"
printf '%*s' $(( $pad - ${#string} ))
}
useAvahi() {
echo_pad "#" 4
echo_pad "HOSTNAME" 20
echo_pad "IP" 20
echo_pad "DEVICE" 30
echo_pad "VERSION" 10
echo
printf -v line '%*s\n' 84
echo ${line// /-}
counter=0
avahi-browse -t -r -p "_arduino._tcp" 2>/dev/null | grep ^= | while read line; do
(( counter++ ))
hostname=`echo $line | cut -d ';' -f4`
ip=`echo $line | cut -d ';' -f8`
txt=`echo $line | cut -d ';' -f10`
board=`echo $txt | sed -n "s/.*espurna_board=\([^\"]*\).*/\1/p"`
version=`echo $txt | sed -n "s/.*espurna_version=\([^\"]*\).*/\1/p"`
echo_pad "$counter" 4
echo_pad "$hostname" 20
echo_pad "$ip" 20
echo_pad "$board" 30
echo_pad "$version" 10
echo
done
echo
}
# ------------------------------------------------------------------------------
# Welcome
echo
echo "--------------------------------------------------------------"
echo "OTA-UPDATABLE DEVICES"
echo "--------------------------------------------------------------"
echo
if exists avahi-browse; then
useAvahi
else
echo "Avahi not installed"
exit 1
fi

Loading…
Cancel
Save