We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c14fc86 commit ae32907Copy full SHA for ae32907
hardware/RFLink.cpp
@@ -74,7 +74,8 @@ const _tRFLinkStringIntHelper rfswitches[] =
74
{ "EV1527", sSwitchTypeEV1527 }, // p61
75
{ "Elmes", sSwitchTypeElmes }, // p65
76
{ "Aster", sSwitchTypeAster }, // p17
77
- { "Sartano", sSwitchTypeSartano }, // p17
+ { "Sartano", sSwitchTypeSartano }, // p3
78
+ { "Europe", sSwitchTypeEurope }, // p18
79
{ "", -1 }
80
};
81
@@ -89,6 +90,17 @@ const _tRFLinkStringIntHelper rfswitchcommands[] =
89
90
91
92
93
+const _tRFLinkStringIntHelper rfblindcommands[] =
94
+{
95
+ { "UP", blinds_sOpen },
96
+ { "DOWN", blinds_sClose },
97
+ { "STOP", blinds_sStop },
98
+ { "CONFIRM", blinds_sConfirm },
99
+ { "LIMIT", blinds_sLimit },
100
+ { "", -1 }
101
+};
102
+
103
104
int GetGeneralRFLinkFromString(const _tRFLinkStringIntHelper *pTable, const std::string &szType)
105
{
106
int ii = 0;
hardware/hardwaretypes.h
@@ -112,6 +112,7 @@
112
#define sSwitchTypeElmes 0x33
113
#define sSwitchTypeAster 0x34
114
#define sSwitchTypeSartano 0x35
115
+#define sSwitchTypeEurope 0x36
116
117
//Switch commands
118
#define gswitch_sOff 0x00
main/RFXNames.cpp
@@ -715,6 +715,7 @@ const char *RFX_Type_SubType_Desc(const unsigned char dType, const unsigned char
715
{ pTypeGeneralSwitch, sSwitchTypeElmes, "Elmes" },
716
{ pTypeGeneralSwitch, sSwitchTypeAster, "Aster" },
717
{ pTypeGeneralSwitch, sSwitchTypeSartano, "Sartano" },
718
+ { pTypeGeneralSwitch, sSwitchTypeEurope, "Europe" },
719
{ 0,0,NULL }
720
721
return findTableID1ID2(Table, dType, sType);
0 commit comments