├── .gitignore ├── LICENSE ├── README.md ├── can2mqtt_core ├── can2mqtt_core.sln ├── can2mqtt_core │ ├── CanFrame.cs │ ├── ITranslator.cs │ ├── LogFormatter.cs │ ├── LogType.cs │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── can2mqtt.cs │ ├── can2mqtt.csproj │ ├── config-sample.json │ └── translator │ │ └── stiebel_eltron │ │ ├── CombinedValueConverter.cs │ │ ├── ElsterIndex.cs │ │ ├── Enumerations.cs │ │ ├── StiebelEltron.cs │ │ ├── StiebelEltron.json │ │ └── ValueConverter.cs ├── can2mqtt_tests │ ├── Translator │ │ └── StiebelEltronTest.cs │ └── can2mqtt.Tests.csproj └── can2mqtt_tool │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ └── launchSettings.json │ └── can2mqtt_tool.csproj └── infos ├── ElsterTable.inc ├── Stiebel Eltron LWZ 504 ├── OperatingStatus │ ├── 0000000100010001-273.jpg │ ├── 0000000110010001-401.jpg │ ├── 0000010000000101-1029.jpg │ ├── 0000010000000111-1031.jpg │ ├── 0000010000010011-1043.jpg │ ├── 0000010010000101-1157.jpg │ ├── 0000010100000001-1281.jpg │ ├── 0000010100000101-1285.jpg │ ├── 0000010100000111-1287.jpg │ ├── 0000010100010011-1299.jpg │ ├── 0000010110000101-1413.jpg │ ├── 1024.jpg │ ├── 1028.jpg │ ├── 1541.jpg │ ├── 1543.jpg │ ├── Converter.url │ ├── IMG_20191102_162239-evt.417.jpg │ ├── bit_resolve.txt │ ├── cool.svg │ ├── curtain.svg │ ├── defrost.svg │ ├── elecheat.svg │ ├── filter.svg │ ├── filterbottom.svg │ ├── filtertop.svg │ ├── heat.svg │ ├── idle.svg │ ├── initheat.svg │ ├── nopower.svg │ ├── play.svg │ ├── service.svg │ ├── valve.svg │ └── ventilation.svg ├── SetVentialationLevel.xlsx ├── WriteCommands │ └── SetVentilationLevel.txt ├── canids.txt ├── canlog_2019-12-14-15-56.csv ├── scan180_2019-10-21.txt ├── scan180_2019-10-21_winter.txt ├── scan180_2019-10-21_winter_sperrzeit.txt ├── scan180_2024-11-17_mit_fehler.txt ├── scan301_2019-07-03-02.txt ├── scan301_2019-07-03.txt ├── scan301_2019-10-22_winter.txt ├── scan301_2019-10-22_winter_sperrzeit.txt ├── scan302_2019-07-03.txt └── unclear communication.txt ├── can_progs ├── can_scan ├── can_scan.arm └── readme.txt ├── can_telegram.txt └── canlogserver connection fails.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/README.md -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core.sln -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/CanFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/CanFrame.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/ITranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/ITranslator.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/LogFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/LogFormatter.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/LogType.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/Program.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/Properties/launchSettings.json -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/appsettings.Development.json -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/appsettings.json -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/can2mqtt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/can2mqtt.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/can2mqtt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/can2mqtt.csproj -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/config-sample.json -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/CombinedValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/CombinedValueConverter.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/ElsterIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/ElsterIndex.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/Enumerations.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/StiebelEltron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/StiebelEltron.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/StiebelEltron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/StiebelEltron.json -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_core/translator/stiebel_eltron/ValueConverter.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_tests/Translator/StiebelEltronTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_tests/Translator/StiebelEltronTest.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_tests/can2mqtt.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_tests/can2mqtt.Tests.csproj -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_tool/Program.cs -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_tool/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_tool/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_tool/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_tool/Properties/launchSettings.json -------------------------------------------------------------------------------- /can2mqtt_core/can2mqtt_tool/can2mqtt_tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/can2mqtt_core/can2mqtt_tool/can2mqtt_tool.csproj -------------------------------------------------------------------------------- /infos/ElsterTable.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/ElsterTable.inc -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000000100010001-273.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000000100010001-273.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000000110010001-401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000000110010001-401.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010000000101-1029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010000000101-1029.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010000000111-1031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010000000111-1031.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010000010011-1043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010000010011-1043.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010010000101-1157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010010000101-1157.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100000001-1281.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100000001-1281.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100000101-1285.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100000101-1285.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100000111-1287.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100000111-1287.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100010011-1299.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010100010011-1299.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010110000101-1413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/0000010110000101-1413.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/1024.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/1028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/1028.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/1541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/1541.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/1543.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/1543.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/Converter.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/Converter.url -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/IMG_20191102_162239-evt.417.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/IMG_20191102_162239-evt.417.jpg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/bit_resolve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/bit_resolve.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/cool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/cool.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/curtain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/curtain.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/defrost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/defrost.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/elecheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/elecheat.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/filter.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/filterbottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/filterbottom.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/filtertop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/filtertop.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/heat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/heat.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/idle.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/initheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/initheat.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/nopower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/nopower.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/play.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/service.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/valve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/valve.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/OperatingStatus/ventilation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/OperatingStatus/ventilation.svg -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/SetVentialationLevel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/SetVentialationLevel.xlsx -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/WriteCommands/SetVentilationLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/WriteCommands/SetVentilationLevel.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/canids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/canids.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/canlog_2019-12-14-15-56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/canlog_2019-12-14-15-56.csv -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan180_2019-10-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan180_2019-10-21.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan180_2019-10-21_winter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan180_2019-10-21_winter.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan180_2019-10-21_winter_sperrzeit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan180_2019-10-21_winter_sperrzeit.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan180_2024-11-17_mit_fehler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan180_2024-11-17_mit_fehler.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan301_2019-07-03-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan301_2019-07-03-02.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan301_2019-07-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan301_2019-07-03.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan301_2019-10-22_winter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan301_2019-10-22_winter.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan301_2019-10-22_winter_sperrzeit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan301_2019-10-22_winter_sperrzeit.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/scan302_2019-07-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/scan302_2019-07-03.txt -------------------------------------------------------------------------------- /infos/Stiebel Eltron LWZ 504/unclear communication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/Stiebel Eltron LWZ 504/unclear communication.txt -------------------------------------------------------------------------------- /infos/can_progs/can_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/can_progs/can_scan -------------------------------------------------------------------------------- /infos/can_progs/can_scan.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/can_progs/can_scan.arm -------------------------------------------------------------------------------- /infos/can_progs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/can_progs/readme.txt -------------------------------------------------------------------------------- /infos/can_telegram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/can_telegram.txt -------------------------------------------------------------------------------- /infos/canlogserver connection fails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hunv/can2mqtt/HEAD/infos/canlogserver connection fails.txt --------------------------------------------------------------------------------