├── .gitignore ├── LICENSE ├── README.md ├── config.sh ├── homie_heatPump.ino ├── homie_heatpump └── .DS_Store ├── remoteConverter ├── remoteConverter.ino └── src │ ├── IRLink.cpp │ ├── IRLink.hpp │ ├── IRNECRemote.cpp │ └── IRNECRemote.hpp ├── sming_heatpump ├── Makefile ├── README.rst ├── app │ ├── IRLink.cpp │ ├── SenvilleAURA.cpp │ ├── SenvilleAURADisp.cpp │ └── application.cpp ├── component.mk.orig ├── files │ └── control.config └── include │ ├── IRLink.hpp │ ├── SenvilleAURA.hpp │ ├── SenvilleAURADisp.hpp │ └── ssl │ ├── cert.h │ └── private_key.h ├── src ├── .DS_Store ├── IRLink.cpp ├── IRLink.hpp ├── IRNECRemote.cpp ├── IRNECRemote.hpp ├── SenvilleAURA.cpp ├── SenvilleAURA.hpp ├── SenvilleAURADisp.cpp └── SenvilleAURADisp.hpp ├── test_IRHVACLink ├── src │ ├── IRLink.cpp │ ├── IRLink.hpp │ ├── SenvilleAURA.cpp │ └── SenvilleAURA.hpp └── test_IRHVACLink.ino ├── test_SenvilleDisp ├── src │ ├── IRLink.cpp │ ├── IRLink.hpp │ ├── SenvilleAURADisp.cpp │ └── SenvilleAURADisp.hpp └── test_SenvilleDisp.ino └── testdata ├── display_clk_inter.txt ├── display_clock.txt ├── display_data_01011011.txt ├── display_data_bit1.txt ├── display_data_bit2.txt ├── display_data_bit3.txt ├── display_data_bit4.txt ├── display_data_bit5.txt ├── display_data_bit6.txt ├── display_data_bit7.txt ├── display_data_bit8.txt ├── display_data_flat.txt ├── display_led_inter.txt ├── displayresults01.rtf └── setup_display_signals_mhs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/README.md -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/config.sh -------------------------------------------------------------------------------- /homie_heatPump.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/homie_heatPump.ino -------------------------------------------------------------------------------- /homie_heatpump/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/homie_heatpump/.DS_Store -------------------------------------------------------------------------------- /remoteConverter/remoteConverter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/remoteConverter/remoteConverter.ino -------------------------------------------------------------------------------- /remoteConverter/src/IRLink.cpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.cpp -------------------------------------------------------------------------------- /remoteConverter/src/IRLink.hpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.hpp -------------------------------------------------------------------------------- /remoteConverter/src/IRNECRemote.cpp: -------------------------------------------------------------------------------- 1 | ../../src/IRNECRemote.cpp -------------------------------------------------------------------------------- /remoteConverter/src/IRNECRemote.hpp: -------------------------------------------------------------------------------- 1 | ../../src/IRNECRemote.hpp -------------------------------------------------------------------------------- /sming_heatpump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/Makefile -------------------------------------------------------------------------------- /sming_heatpump/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/README.rst -------------------------------------------------------------------------------- /sming_heatpump/app/IRLink.cpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.cpp -------------------------------------------------------------------------------- /sming_heatpump/app/SenvilleAURA.cpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURA.cpp -------------------------------------------------------------------------------- /sming_heatpump/app/SenvilleAURADisp.cpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURADisp.cpp -------------------------------------------------------------------------------- /sming_heatpump/app/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/app/application.cpp -------------------------------------------------------------------------------- /sming_heatpump/component.mk.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/component.mk.orig -------------------------------------------------------------------------------- /sming_heatpump/files/control.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/files/control.config -------------------------------------------------------------------------------- /sming_heatpump/include/IRLink.hpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.hpp -------------------------------------------------------------------------------- /sming_heatpump/include/SenvilleAURA.hpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURA.hpp -------------------------------------------------------------------------------- /sming_heatpump/include/SenvilleAURADisp.hpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURADisp.hpp -------------------------------------------------------------------------------- /sming_heatpump/include/ssl/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/include/ssl/cert.h -------------------------------------------------------------------------------- /sming_heatpump/include/ssl/private_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/sming_heatpump/include/ssl/private_key.h -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/IRLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/IRLink.cpp -------------------------------------------------------------------------------- /src/IRLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/IRLink.hpp -------------------------------------------------------------------------------- /src/IRNECRemote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/IRNECRemote.cpp -------------------------------------------------------------------------------- /src/IRNECRemote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/IRNECRemote.hpp -------------------------------------------------------------------------------- /src/SenvilleAURA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/SenvilleAURA.cpp -------------------------------------------------------------------------------- /src/SenvilleAURA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/SenvilleAURA.hpp -------------------------------------------------------------------------------- /src/SenvilleAURADisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/SenvilleAURADisp.cpp -------------------------------------------------------------------------------- /src/SenvilleAURADisp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/src/SenvilleAURADisp.hpp -------------------------------------------------------------------------------- /test_IRHVACLink/src/IRLink.cpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.cpp -------------------------------------------------------------------------------- /test_IRHVACLink/src/IRLink.hpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.hpp -------------------------------------------------------------------------------- /test_IRHVACLink/src/SenvilleAURA.cpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURA.cpp -------------------------------------------------------------------------------- /test_IRHVACLink/src/SenvilleAURA.hpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURA.hpp -------------------------------------------------------------------------------- /test_IRHVACLink/test_IRHVACLink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/test_IRHVACLink/test_IRHVACLink.ino -------------------------------------------------------------------------------- /test_SenvilleDisp/src/IRLink.cpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.cpp -------------------------------------------------------------------------------- /test_SenvilleDisp/src/IRLink.hpp: -------------------------------------------------------------------------------- 1 | ../../src/IRLink.hpp -------------------------------------------------------------------------------- /test_SenvilleDisp/src/SenvilleAURADisp.cpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURADisp.cpp -------------------------------------------------------------------------------- /test_SenvilleDisp/src/SenvilleAURADisp.hpp: -------------------------------------------------------------------------------- 1 | ../../src/SenvilleAURADisp.hpp -------------------------------------------------------------------------------- /test_SenvilleDisp/test_SenvilleDisp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/test_SenvilleDisp/test_SenvilleDisp.ino -------------------------------------------------------------------------------- /testdata/display_clk_inter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_clk_inter.txt -------------------------------------------------------------------------------- /testdata/display_clock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_clock.txt -------------------------------------------------------------------------------- /testdata/display_data_01011011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_01011011.txt -------------------------------------------------------------------------------- /testdata/display_data_bit1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit1.txt -------------------------------------------------------------------------------- /testdata/display_data_bit2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit2.txt -------------------------------------------------------------------------------- /testdata/display_data_bit3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit3.txt -------------------------------------------------------------------------------- /testdata/display_data_bit4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit4.txt -------------------------------------------------------------------------------- /testdata/display_data_bit5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit5.txt -------------------------------------------------------------------------------- /testdata/display_data_bit6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit6.txt -------------------------------------------------------------------------------- /testdata/display_data_bit7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit7.txt -------------------------------------------------------------------------------- /testdata/display_data_bit8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_bit8.txt -------------------------------------------------------------------------------- /testdata/display_data_flat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_data_flat.txt -------------------------------------------------------------------------------- /testdata/display_led_inter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/display_led_inter.txt -------------------------------------------------------------------------------- /testdata/displayresults01.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/displayresults01.rtf -------------------------------------------------------------------------------- /testdata/setup_display_signals_mhs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpishere/homie_heatPump/HEAD/testdata/setup_display_signals_mhs.sh --------------------------------------------------------------------------------