Skip to content

Commit

Permalink
Fix unreferenced def files
Browse files Browse the repository at this point in the history
  • Loading branch information
raomin committed Jan 5, 2024
1 parent 4000c45 commit 1136e85
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/converters.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Converter
break;
case 105:
dblData = (double)getSignedValue(data, num, 0) * 0.1;
Serial.printf("%f\n", dblData);
// Serial.printf("%f\n", dblData);
break;
case 106:
dblData = (double)getSignedValue(data, num, 1) * 0.1;
Expand Down Expand Up @@ -237,7 +237,7 @@ class Converter
{
int num = data[0] >> 4;
int num2 = (int)(data[0] & 15);
sprintf(def->asString,"{0:X}{1:X}", num, num2);
sprintf(def->asString,"{0:%d}{1:%d}", num, num2);
return;
}

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 8 additions & 2 deletions src/setup.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,27 +72,33 @@
//
//Suported locales: French, German, Spanish.

//#include "def/DEFAULT.h"
//#include "def/ALTHERMA(BIZONE_CB_04-08KW).h"
//#include "def/ALTHERMA(BIZONE_CB_11-16KW).h"
//#include "def/ALTHERMA(EBLA-EDLA EWAA-EWYA D SERIES 9-16KW).h"
//#include "def/ALTHERMA(GSHP).h"
//#include "def/ALTHERMA(GSHP2).h"
//#include "def/ALTHERMA(HPSU6_ULTRA).h"
//#include "def/ALTHERMA(HYBRID).h"
//#include "def/ALTHERMA(LT-D7_E_BML).h"
//#include "def/ALTHERMA(LT_11-16KW_HYDROSPLIT_HYDRO_UNIT).h"
//#include "def/ALTHERMA(LT_CA_CB_04-08KW).h"
//#include "def/ALTHERMA(LT_CA_CB_11-16KW).h"
//#include "def/ALTHERMA(LT_DA_04-08KW).h"
//#include "def/ALTHERMA(LT_DA_PAIR_BML).h"
//#include "def/ALTHERMA(LT_GAS_INJ).h"
//#include "def/ALTHERMA(LT_GAS_INJ)20200702.h"
//#include "def/ALTHERMA(LT_MULTI_DHWHP).h"
//#include "def/ALTHERMA(LT_MULTI_HYBRID).h"
//#include "def/ALTHERMA(LT-D7_E_BML).h"
//#include "def/ALTHERMA(MONOBLOC_CA_05-07KW).h"
//#include "def/ALTHERMA(TOP-GRADE-LARGE_E)TEST.h"
//#include "def/ALTHERMA(TOP-GRADE-SMALL_E)TEST.h"
//#include "def/ALTHERMA(TOP-GRADE).h"
//#include "def/DAIKIN_MINI_INVERTER_CHILLER04-08KW.h"
//#include "def/EKHWET-BAV3(MULTI DHW TANK).h"
//#include "def/PROTOCOL_S_ROTEX.h"
//#include "def/PROTOCOL_S.h"
//#include "def/DEFAULT.h"


#ifndef LABELDEF
#warning "NO DEFINITION SELECTED: Please select your heat pump definition in /src/setup.h -- Using default."
Expand Down

0 comments on commit 1136e85

Please sign in to comment.