Skip to content

Commit 5c3558a

Browse files
authored
Merge pull request #260 from IgorYbema/main
release v3.0
2 parents 98acf55 + 4abbd33 commit 5c3558a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+16287
-1516
lines changed

.github/workflows/main.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build binary
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
13+
- name: Setup Arduino CLI
14+
uses: arduino/setup-arduino-cli@v1
15+
16+
- name: Install platform
17+
run: arduino-cli core install esp8266:esp8266 --additional-urls https://arduino.esp8266.com/stable/package_esp8266com_index.json -v
18+
19+
- name: Install dependencies
20+
run: arduino-cli lib install ringbuffer pubsubclient doubleresetdetect arduinojson dallastemperature onewire WebSockets
21+
22+
- name: Compile Sketch
23+
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
24+
25+
- name: Add MD5 checksum
26+
run: cd HeishaMon && MD5=`md5sum HeishaMon.ino.bin | cut -d\ -f1` && mv HeishaMon.ino.bin HeishaMon-alpha-$MD5.bin
27+
shell: bash
28+
29+
- name: Upload artifacts
30+
uses: actions/upload-artifact@v2
31+
with:
32+
name: HeishaMon.ino.bin
33+
path: HeishaMon/HeishaMon-*.bin

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "Integrations/Domoticz/HeishamonMQTT"]
22
path = Integrations/Domoticz/HeishamonMQTT
33
url = https://github.com/MarFanNL/HeishamonMQTT
4+
[submodule "Integrations/NodeRed"]
5+
path = Integrations/NodeRed
6+
url = https://github.com/edterbak/NodeRed_Heishamon_control

HeatPumpType.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ Assuming that bytes from #129 to #138 are unique for each model of Aquarea heat
2121
|14 | E2 CF 0B 82 05 12 D0 0C 91 05 | WH-SQC09H3E8 | WH-UQ09HE8 | KIT-WQC09H3E8 | 9 | 3ph | T-CAP - Super Quiet |
2222
|15 | E2 CF 0C 55 14 12 D0 0B 15 08 | WH-SDC09H3E5 | WH-UD09HE5 | KIT-WC09H3E5 | 9 | 1 ph | HP |
2323
|16 | E2 CF 0C 43 00 12 D0 0B 15 08 | WH-ADC0309H3E5 | WH-UD09HE5 | KIT-ADC09HE5 | 9 | 1 ph | HP - All-In-One |
24-
|17 | 62 D2 0B 45 54 32 D2 0C 45 55 | WH-ADC0309J3E5 | WH-UD05JE5 | KIT-ADC-05JE5 | 5 | 1ph | HP - All-In-One |
24+
|17 | 62 D2 0B 45 54 32 D2 0C 45 55 | WH-ADC0309J3E5 | WH-UD05JE5 | KIT-ADC05JE5 | 5 | 1ph | HP - All-In-One |
2525
|18 | 62 D2 0B 43 54 42 D2 0C 46 55 | WH-SDC0709J3E5 | WH-UD07JE5 | KIT-WC07J3E5 | 7 | 1 ph | HP |
2626
|19 | E2 CF 0C 54 14 12 D0 0B 14 08 | WH-SDC07H3E5-1 | WH-UD07HE5-1 | KIT-WC07H3E5-1 | 7 | 1 ph | HP |
2727
|20 | C2 D3 0B 34 65 B2 D3 0B 95 65 | Monoblock | WH-MDC07J3E5 | Monoblock | 7 | 1ph | HP |
28+
|21 | C2 D3 0B 35 65 B2 D3 0B 96 65 | Monoblock | WH-MDC09J3E5 | Monoblock | 9 | 1ph | HP |
29+
|22 | 62 D2 0B 41 54 32 D2 0C 45 55 | WH-SDC0305J3E5 | WH-UD05JE5 | KIT-WC05J3E5 | 5 | 1ph | HP |
2830

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

HeishaMon normal case.stl

390 KB
Binary file not shown.

HeishaMon opentherm case.stl

388 KB
Binary file not shown.

HeishaMon v3 case.stl

-394 KB
Binary file not shown.

HeishaMon v3.1 case.stl

-416 KB
Binary file not shown.

0 commit comments

Comments
 (0)