This commit is contained in:
J. Nick Koston 2023-06-05 13:36:50 -05:00
parent b5709fe41d
commit 4b0f067e1c
No known key found for this signature in database
1 changed files with 5 additions and 3 deletions

View File

@ -99,9 +99,6 @@ class RATGDOComponent : public Component {
void IRAM_ATTR isrRPM1(); void IRAM_ATTR isrRPM1();
void IRAM_ATTR isrRPM2(); void IRAM_ATTR isrRPM2();
protected:
ESPPreferenceObject pref_;
bool useRollingCodes_;
/*** Static Codes ***/ /*** Static Codes ***/
byte SYNC1[] = {0x55, 0x01, 0x00, 0x61, 0x12, 0x49, 0x2c, 0x92, 0x5b, 0x24, byte SYNC1[] = {0x55, 0x01, 0x00, 0x61, 0x12, 0x49, 0x2c, 0x92, 0x5b, 0x24,
0x96, 0x86, 0x0b, 0x65, 0x96, 0xd9, 0x8f, 0x26, 0x4a}; 0x96, 0x86, 0x0b, 0x65, 0x96, 0xd9, 0x8f, 0x26, 0x4a};
@ -119,6 +116,11 @@ class RATGDOComponent : public Component {
byte LIGHT_CODE[] = {0x55, 0x01, 0x00, 0x94, 0x3f, 0xef, 0xbc, 0xfb, 0x7f, 0xbe, byte LIGHT_CODE[] = {0x55, 0x01, 0x00, 0x94, 0x3f, 0xef, 0xbc, 0xfb, 0x7f, 0xbe,
0xff, 0xa6, 0x1a, 0x4d, 0xa6, 0xda, 0x8d, 0x76, 0xb1}; 0xff, 0xa6, 0x1a, 0x4d, 0xa6, 0xda, 0x8d, 0x76, 0xb1};
protected:
ESPPreferenceObject pref_;
bool useRollingCodes_;
}; // RATGDOComponent }; // RATGDOComponent
} // namespace ratgdo } // namespace ratgdo