Skip to content

Commit

Permalink
Merge pull request #260 from IgorYbema/main
Browse files Browse the repository at this point in the history
release v3.0
  • Loading branch information
Egyras authored Aug 31, 2022
2 parents 98acf55 + 4abbd33 commit 5c3558a
Show file tree
Hide file tree
Showing 108 changed files with 16,287 additions and 1,516 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build binary

on: [push, pull_request]

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Arduino CLI
uses: arduino/setup-arduino-cli@v1

- name: Install platform
run: arduino-cli core install esp8266:esp8266 --additional-urls https://arduino.esp8266.com/stable/package_esp8266com_index.json -v

- name: Install dependencies
run: arduino-cli lib install ringbuffer pubsubclient doubleresetdetect arduinojson dallastemperature onewire WebSockets

- name: Compile Sketch
run: cd HeishaMon && arduino-cli compile --output-dir . --fqbn=esp8266:esp8266:d1_mini:xtal=160,vt=flash,ssl=basic,mmu=3216,non32xfer=safe,eesz=4M2M,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=921600 --vid-pid=1A86_7523 --warnings=none --verbose HeishaMon.ino

- name: Add MD5 checksum
run: cd HeishaMon && MD5=`md5sum HeishaMon.ino.bin | cut -d\ -f1` && mv HeishaMon.ino.bin HeishaMon-alpha-$MD5.bin
shell: bash

- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: HeishaMon.ino.bin
path: HeishaMon/HeishaMon-*.bin
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "Integrations/Domoticz/HeishamonMQTT"]
path = Integrations/Domoticz/HeishamonMQTT
url = https://github.com/MarFanNL/HeishamonMQTT
[submodule "Integrations/NodeRed"]
path = Integrations/NodeRed
url = https://github.com/edterbak/NodeRed_Heishamon_control
4 changes: 3 additions & 1 deletion HeatPumpType.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ Assuming that bytes from #129 to #138 are unique for each model of Aquarea heat
|14 | E2 CF 0B 82 05 12 D0 0C 91 05 | WH-SQC09H3E8 | WH-UQ09HE8 | KIT-WQC09H3E8 | 9 | 3ph | T-CAP - Super Quiet |
|15 | E2 CF 0C 55 14 12 D0 0B 15 08 | WH-SDC09H3E5 | WH-UD09HE5 | KIT-WC09H3E5 | 9 | 1 ph | HP |
|16 | E2 CF 0C 43 00 12 D0 0B 15 08 | WH-ADC0309H3E5 | WH-UD09HE5 | KIT-ADC09HE5 | 9 | 1 ph | HP - All-In-One |
|17 | 62 D2 0B 45 54 32 D2 0C 45 55 | WH-ADC0309J3E5 | WH-UD05JE5 | KIT-ADC-05JE5 | 5 | 1ph | HP - All-In-One |
|17 | 62 D2 0B 45 54 32 D2 0C 45 55 | WH-ADC0309J3E5 | WH-UD05JE5 | KIT-ADC05JE5 | 5 | 1ph | HP - All-In-One |
|18 | 62 D2 0B 43 54 42 D2 0C 46 55 | WH-SDC0709J3E5 | WH-UD07JE5 | KIT-WC07J3E5 | 7 | 1 ph | HP |
|19 | E2 CF 0C 54 14 12 D0 0B 14 08 | WH-SDC07H3E5-1 | WH-UD07HE5-1 | KIT-WC07H3E5-1 | 7 | 1 ph | HP |
|20 | C2 D3 0B 34 65 B2 D3 0B 95 65 | Monoblock | WH-MDC07J3E5 | Monoblock | 7 | 1ph | HP |
|21 | C2 D3 0B 35 65 B2 D3 0B 96 65 | Monoblock | WH-MDC09J3E5 | Monoblock | 9 | 1ph | HP |
|22 | 62 D2 0B 41 54 32 D2 0C 45 55 | WH-SDC0305J3E5 | WH-UD05JE5 | KIT-WC05J3E5 | 5 | 1ph | HP |

All bytes are used for Heat Pump model identification in the code.

Expand Down
Binary file added HeishaMon normal case.stl
Binary file not shown.
Binary file added HeishaMon opentherm case.stl
Binary file not shown.
Binary file removed HeishaMon v3 case.stl
Binary file not shown.
Binary file removed HeishaMon v3.1 case.stl
Binary file not shown.
Loading

0 comments on commit 5c3558a

Please sign in to comment.