This commit is contained in:
J. Nick Koston 2023-06-05 12:57:23 -05:00
parent 580f2cd831
commit a9120b7d69
No known key found for this signature in database
1 changed files with 6 additions and 1 deletions

View File

@ -17,6 +17,9 @@
#include "SoftwareSerial.h"
#include "rolling_code.h"
namespace esphome {
namespace ratgdo {
SoftwareSerial swSerial;
/********************************** BOOTSTRAP MANAGER
@ -124,4 +127,6 @@ byte DOOR_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};
#endif
#endif
}
}