mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
* homematic: Prettier YAML files * homematic: Update add-on URL * homematic: Remove tabs from shell scripts * homematic: Remove curl, as it is in the base image * homematic: Create all folders in a single command in Dockerfile * homematic: Tweak documentation
38 lines
1.3 KiB
Bash
Executable File
38 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bashio
|
|
# shellcheck disable=SC2012
|
|
|
|
|
|
function firmware_update_hmip() {
|
|
local DEVICE="$1"
|
|
local FROM_VERSION=
|
|
local TO_VERSION=
|
|
|
|
FROM_VERSION="$(java -Xmx64m -jar /opt/HmIP/hmip-copro-update.jar -p "${DEVICE}" -v | grep "Application version =" | cut -d' ' -f5)"
|
|
TO_VERSION="$(ls /firmware/HmIP-RFUSB/hmip_coprocessor_update-*.eq3 | sed 's/.*hmip_coprocessor_update-\(.*\)\.eq3/\1/' | tail -n1)"
|
|
if [ "${FROM_VERSION}" != "${TO_VERSION}" ]; then
|
|
if java -Xmx64m -jar /opt/HmIP/hmip-copro-update.jar -p "${DEVICE}" -f "/firmware/HmIP-RFUSB/hmip_coprocessor_update-${TO_VERSION}.eq3"; then
|
|
bashio::log.info "HmIP update to ${TO_VERSION} was successful"
|
|
else
|
|
bashio::log.error "HmIP update ${TO_VERSION} fails!"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
|
|
function firmware_update_rfd() {
|
|
if "${HM_HOME}/bin/eq3configcmd" update-coprocessor -lgw -u -rfdconf /etc/config/rfd.conf -l 1; then
|
|
bashio::log.info "RFd update was successful"
|
|
else
|
|
bashio::log.error "RFd update fails!"
|
|
fi
|
|
}
|
|
|
|
|
|
function firmware_update_wired() {
|
|
if "${HM_HOME}/bin/eq3configcmd" update-lgw-firmware -m /firmware/fwmap -c /etc/config/hs485d.conf -l 1; then
|
|
bashio::log.info "Wired update was successful"
|
|
else
|
|
bashio::log.error "Wired update fails!"
|
|
fi
|
|
}
|