Skip to content

Commit

Permalink
Bugfix + New devices
Browse files Browse the repository at this point in the history
- Fix issue #94: Add a new cover entity for D2-05-00 that should fix inverted position issue (thanks to @didi31)
- Set default values for measurement entities in D2-01-xx.
- Add support for D2-14-30 (Netsecur smoke detector with temperature and humidity sensors)
- Add support for F6-04-01. All NodOn devices to date are now supported.
- Add support for D2-50-00, D2-50-01, D2-50-10 and D2-50-11 (thanks to @billeranton for testing and initial mapping)
- Add full support for A5-20-01
- Add full support for A5-20-04
- Add full support for A5-20-06 (thanks to @stefanhofmann2)
- Add switches for F6-02-01/02 virtual entities in addition to the existing select entities.
- Dockerfile now use tagged archives for installation.
  • Loading branch information
mak-gitdev committed Nov 27, 2023
1 parent 334d433 commit 4a79c63
Show file tree
Hide file tree
Showing 5 changed files with 2,210 additions and 92 deletions.
16 changes: 12 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,20 @@ RUN apk add --no-cache git && \
pip3 install git+https://github.com/mak-gitdev/enocean.git && \
git clone https://github.com/embyt/enocean-mqtt.git && \
cd enocean-mqtt && python3 setup.py develop && cd .. && \
if [ -z "${BUILD_VERSION##*.*.*}" ]; then \
echo "Building development version ${BUILD_VERSION%-*}" && \
if [ "${BUILD_VERSION}" = "head" ]; then \
echo "Installing from repository head" && \
git clone -b develop --single-branch --depth 1 https://github.com/mak-gitdev/HA_enoceanmqtt.git ; \
else \
echo "Building Stable version ${BUILD_VERSION%-*}" && \
git clone -b master --single-branch --depth 1 https://github.com/mak-gitdev/HA_enoceanmqtt.git ; \
if [ -z "${BUILD_VERSION##*.*.*}" ]; then \
echo "Installing development version ${BUILD_VERSION%-*}" ; \
else \
echo "Installing stable version ${BUILD_VERSION%-*}" ; \
fi; \
wget -nv -O "/app.tar.gz" \
"https://github.com/mak-gitdev/HA_enoceanmqtt/archive/refs/tags/${BUILD_VERSION%-*}.tar.gz" && \
echo "Extracting /app.tar.gz" && tar xzf "/app.tar.gz" && \
rm "/app.tar.gz" && \
mv -v "HA_enoceanmqtt-${BUILD_VERSION%-*}" HA_enoceanmqtt ; \
fi; \
cp -rf HA_enoceanmqtt/enoceanmqtt enocean-mqtt && \
rm -rf HA_enoceanmqtt
Expand Down
Loading

0 comments on commit 4a79c63

Please sign in to comment.