Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Security Plus v1 support #171

Merged
merged 65 commits into from
Jan 19, 2024
Merged

feat: Security Plus v1 support #171

merged 65 commits into from
Jan 19, 2024

Conversation

bdraco
Copy link
Member

@bdraco bdraco commented Jan 6, 2024

Test YAML (the substitutions need to be adjusted depending on which board is used)

---
substitutions:
  id_prefix: garageratgdo
  friendly_name: "Garage"
  wifi_ssid: FILL_THIS_IN
  wifi_password: FILL_THIS_IN
  uart_tx_pin: D4
  uart_rx_pin: D2
  input_obst_pin: D7
  status_door_pin: D0
  status_obstruction_pin: D8
  dry_contact_open_pin: D5
  dry_contact_close_pin: D6
  dry_contact_light_pin: D3

web_server:

esp8266:
  board: d1_mini
  restore_from_flash: true


esphome:
  name: ${id_prefix}
  friendly_name: ${friendly_name}
  project:
    name: ratgdo.esphome
    version: "2.0"
api:
  id: api_server

packages:
  # Git repo examples
  remote_package:
    url: https://github.com/ratgdo/esphome-ratgdo
    files: [base_secplusv1.yaml]
    refresh: 1s # optional
    ref: sec_plus_v1

# Sync time with Home Assistant.
time:
  - platform: homeassistant
    id: homeassistant_time

ota:

wifi:
  ssid: ${wifi_ssid}
  password: ${wifi_password}

logger:
#  level: VERBOSE

sensor:
# Uptime sensor.
- platform: template
  name: ratgdo Free Memory
  lambda: return ESP.getFreeHeap();
  unit_of_measurement: 'B'
  state_class: measurement

@@ -297,6 +297,12 @@ namespace secplus1 {
if (cmd.value == 0x31) {
this->wall_panel_starting_ = true;
}
} else if (cmd.type == CommandType::TOGGLE_LIGHT_REQ) {
// motion was detected, or the light toggle button was pressed
// either way it's ok to trigger motion detection
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a novel way of looking at it. Nicely done :)

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah...that makes sense why i was briefly seeing motion being detected despite the motion sensor itself never actually triggering anything in my few minutes of testing the sec+ 1.0 stuff. 👍🏻

@bdraco bdraco changed the title chore: prepare for v1 support feat: v1 support Jan 12, 2024
@bradleyy
Copy link

Just wanted to confirm that this is able to open and close my garage door with a LiftMaster 8500, mfg date 03/08/17. Have not exercised full integration, but it does trigger open and close automations, so it's able to open/close, and communicate status to HA.

@bradleyy
Copy link

I'm not seeing the movement sensor on my 8500; is there anything I can do to assist in debugging? How would I find the message being passed?

@mariusmuja
Copy link
Collaborator

I'm not seeing the movement sensor on my 8500; is there anything I can do to assist in debugging? How would I find the message being passed?

There is no message passed when motion is detected on sec+1, the wall panel just turns on the light. We trigger a motion event when detecting a light toggle message. Once the light is on, no motion events occur.

@bdraco
Copy link
Member Author

bdraco commented Jan 18, 2024

Looks like this is getting close to ready. When you want to merge, let me know, and I'll do some testing with my V2 openers to make sure there's no regressions

After this PR, I think we probably need to clean the website up a little bit to make it clear which one you need to use with which garage door opener, but that can be the next PR

@mariusmuja
Copy link
Collaborator

@bdraco

Sounds good. Can you merge #149 first and I'll rebase this on main afterwards.

@ammmze
Copy link

ammmze commented Jan 18, 2024

Once thing I noticed is that debug logs (the default log level when enabling the logger component) in this branch are much more verbose than they were on the original branch (because #define ESP_LOG2 ESP_LOGV became #define ESP_LOG2 ESP_LOGD). It is printing each byte it receives and then again the bytes that form a packet or command. We probably don't want it to be that verbose in the esphome default logger state do we?

@mariusmuja
Copy link
Collaborator

Once thing I noticed is that debug logs (the default log level when enabling the logger component) in this branch are much more verbose than they were on the original branch (because #define ESP_LOG2 ESP_LOGV became #define ESP_LOG2 ESP_LOGD). It is printing each byte it receives and then again the bytes that form a packet or command. We probably don't want it to be that verbose in the esphome default logger state do we?

No, it's super verbose now because I have no sec+1.0 hardware to test, so I relied on logs from other people and needed to see exactly what's happening. Most of the logging will be removed/changed to ESP_LOGV when merging to main.

@bdraco
Copy link
Member Author

bdraco commented Jan 18, 2024

@bdraco

Sounds good. Can you merge #149 first and I'll rebase this on main afterwards.

I'll start testing that one now

@FeatherKing
Copy link

i can help test on some sec+1.0 hardware if needed. currently running mqtt with an 889LM wall panel. Whats my migration path to one of these builds? can i ota flash through the mqtt build website?

@ammmze
Copy link

ammmze commented Jan 18, 2024

FYI I'm also testing on sec+1.0 hardware from about 20 years ago. I've got an 888LM wall panel I just put in ($2 from a thrift store years ago just sitting on a shelf in the garage, and finally just installed it 😂), but seems to be basically the same as 889LM. So far everything looks good. I've tested the following:

  • obstruction sensor
  • reading light state when controlled manually and motion
  • controlling the light
  • reading lock state when manually controlled
  • controlling lock/unlock
  • reading door state (is opening, open, is closing, closed, etc)
  • open/close door (still need to test the stop functionality)

Only thing I don't get is motion but that's because sec+1.0 doesn't include that information...that information stays local to the wall panel, and the wall panel itself sends the signal to turn on the light.

@bdraco
Copy link
Member Author

bdraco commented Jan 18, 2024

#149 is merged now so you should be all clear to resolve conflicts now

@mariusmuja
Copy link
Collaborator

I pushed a change to not write it during opening/closing. Let me know what you think.

Nice!

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

The blocking issue is gone now that the flash issue is sorted and logging is reduced

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

I can't make the crash happen again either so it might be the thread safety issue

@mariusmuja
Copy link
Collaborator

Great! I'm looking now at the optimistic door status change when opening/closing.

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

I'm seeing some type of loop when stopping the door when opening at 95%

[12:35:35.420][D][number:012]: 'Rolling code counter': Sending state 934.000000
[12:35:35.740][D][esp8266.preferences:238]: Saving preferences to flash...
[12:35:36.956][D][number:012]: 'Rolling code counter': Sending state 935.000000
[12:35:38.477][D][number:012]: 'Rolling code counter': Sending state 936.000000
[12:35:40.464][D][cover:076]: 'Door' - Setting
[12:35:40.469][D][cover:080]:   Command: STOP
[12:35:40.469][D][number:012]: 'Rolling code counter': Sending state 937.000000
[12:35:40.469][D][number:012]: 'Rolling code counter': Sending state 938.000000
[12:35:40.693][D][esp8266.preferences:238]: Saving preferences to flash...
[12:35:41.524][D][number:012]: 'Rolling code counter': Sending state 939.000000
[12:35:43.099][D][number:012]: 'Rolling code counter': Sending state 940.000000
[12:35:44.656][D][number:012]: 'Rolling code counter': Sending state 941.000000
[12:35:45.701][D][esp8266.preferences:238]: Saving preferences to flash...
[12:35:46.108][D][number:012]: 'Rolling code counter': Sending state 942.000000
[12:35:47.799][D][number:012]: 'Rolling code counter': Sending state 943.000000
[12:35:49.171][D][number:012]: 'Rolling code counter': Sending state 944.000000
[12:35:50.706][D][number:012]: 'Rolling code counter': Sending state 945.000000
[12:35:50.713][D][esp8266.preferences:238]: Saving preferences to flash...
[12:35:52.219][D][number:012]: 'Rolling code counter': Sending state 946.000000
[12:35:53.756][D][number:012]: 'Rolling code counter': Sending state 947.000000
[12:35:55.289][D][number:012]: 'Rolling code counter': Sending state 948.000000
[12:35:55.680][D][esp8266.preferences:238]: Saving preferences to flash...
[12:35:56.801][D][number:012]: 'Rolling code counter': Sending state 949.000000
[12:35:58.332][D][number:012]: 'Rolling code counter': Sending state 950.000000
[12:35:59.860][D][number:012]: 'Rolling code counter': Sending state 951.000000
[12:36:00.750][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:01.470][D][number:012]: 'Rolling code counter': Sending state 952.000000
[12:36:03.005][D][number:012]: 'Rolling code counter': Sending state 953.000000
[12:36:04.451][D][number:012]: 'Rolling code counter': Sending state 954.000000
[12:36:05.691][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:05.974][D][number:012]: 'Rolling code counter': Sending state 955.000000
[12:36:07.502][D][number:012]: 'Rolling code counter': Sending state 956.000000
[12:36:09.023][D][number:012]: 'Rolling code counter': Sending state 957.000000
[12:36:10.554][D][number:012]: 'Rolling code counter': Sending state 958.000000
[12:36:10.697][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:12.079][D][number:012]: 'Rolling code counter': Sending state 959.000000
[12:36:13.610][D][number:012]: 'Rolling code counter': Sending state 960.000000
[12:36:15.133][D][number:012]: 'Rolling code counter': Sending state 961.000000
[12:36:16.238][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:16.678][D][number:012]: 'Rolling code counter': Sending state 962.000000
[12:36:18.209][D][number:012]: 'Rolling code counter': Sending state 963.000000
[12:36:19.783][D][number:012]: 'Rolling code counter': Sending state 964.000000
[12:36:20.682][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:21.258][D][number:012]: 'Rolling code counter': Sending state 965.000000
[12:36:22.765][D][number:012]: 'Rolling code counter': Sending state 966.000000
[12:36:24.297][D][number:012]: 'Rolling code counter': Sending state 967.000000
[12:36:25.688][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:25.817][D][number:012]: 'Rolling code counter': Sending state 968.000000
[12:36:27.361][D][number:012]: 'Rolling code counter': Sending state 969.000000
[12:36:28.883][D][number:012]: 'Rolling code counter': Sending state 970.000000
[12:36:30.410][D][number:012]: 'Rolling code counter': Sending state 971.000000
[12:36:30.681][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:31.945][D][number:012]: 'Rolling code counter': Sending state 972.000000
[12:36:33.446][D][number:012]: 'Rolling code counter': Sending state 973.000000
[12:36:34.987][D][number:012]: 'Rolling code counter': Sending state 974.000000
[12:36:35.680][D][esp8266.preferences:238]: Saving preferences to flash...
[12:36:36.567][D][number:012]: 'Rolling code counter': Sending state 975.000000
[12:36:38.031][D][number:012]: 'Rolling code counter': Sending state 976.000000
[12:36:39.556][D][number:012]: 'Rolling code counter': Sending state 977.000000

@mariusmuja
Copy link
Collaborator

I'm seeing some type of loop when stopping the door when opening at 95%

That doesn't look good... Can you reproduce it with more logging?

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

Doing that now. The device is completely unresponsive in HA but continues to log. 🤞 that I can OTA with out getting the ladder back out

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

reflashed, now I can't get it back into the bad state 🙈

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

I did get another crash with the logging turned up

[12:44:55.363][W][component:214]: Component ratgdo took a long time for an operation (0.06 s).
[12:44:55.369][W][component:215]: Components should block for at most 20-30ms.
[12:44:55.386][D][cover:170]: 'Door' - Publishing:
[12:44:55.409][D][cover:173]:   Position: 100%
[12:44:55.409][D][cover:186]:   Current Operation: IDLE
[12:44:55.409][D][switch:012]: 'Status door' Turning ON.
[12:44:55.409][D][switch:055]: 'Status door': Sending state ON
[12:44:55.409][D][esp8266.preferences:238]: Saving preferences to flash...

2024-01-19 12:45:23.662 WARNING  midgarageratgdo @ 192.168.106.58: Connection error occurred: [Errno 54] Connection reset by peer
2024-01-19 12:45:23.662 INFO     Processing unexpected disconnect from ESPHome API for midgarageratgdo @ 192.168.106.58
2024-01-19 12:45:23.662 WARNING  Disconnected from API
2024-01-19 12:45:25.818 INFO     Successfully connected to midgarageratgdo @ 192.168.106.58 in 2.156s
2024-01-19 12:45:25.903 INFO     Successful handshake with midgarageratgdo @ 192.168.106.58 in 0.085s
[12:45:28.012][D][api:102]: Accepted 192.168.107.8
[12:45:28.030][D][api.connection:1121]: Home Assistant 2024.2.0.dev0 (192.168.107.8): Connected successfully
[12:45:28.052][D][time:044]: Synchronized time: 2024-01-19 12:45:28

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

Got it back into the bad state

[12:46:03.528][D][ratgdo:204]: Light state=ON
[12:46:03.528][D][ratgdo:210]: Lock state=UNLOCKED
[12:46:03.528][D][ratgdo:189]: Learn state=INACTIVE
[12:46:03.528][D][ratgdo_secplus2:415]: Done handle command: STATUS
[12:46:03.528][W][component:214]: Component ratgdo took a long time for an operation (0.05 s).
[12:46:03.528][W][component:215]: Components should block for at most 20-30ms.
[12:46:03.620][D][ratgdo:329]: [50415] Position update: 0.792222
[12:46:03.620][D][cover:170]: 'Door' - Publishing:
[12:46:03.620][D][cover:173]:   Position: 79%
[12:46:03.620][D][cover:186]:   Current Operation: OPENING
[12:46:03.866][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:03.937][D][ratgdo_secplus2:450]: [50720] Encode for transmit rolling=0000497 fixed=020064d539 data=01010380
[12:46:03.937][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 02 08 27 A2 41 24 95 A4 31 FC 9A F8 1F 3F 9B]
[12:46:03.937][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:04.057][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:04.152][D][ratgdo_secplus2:450]: [50909] Encode for transmit rolling=0000497 fixed=020064d539 data=01000380
[12:46:04.152][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 02 08 27 A2 41 24 91 A4 31 FC 9A F8 1F 7F 9B]
[12:46:04.152][W][ratgdo.number:093]: Updating Rolling code counter to 1176.000000
[12:46:04.152][D][number:012]: 'Rolling code counter': Sending state 1176.000000
[12:46:04.152][D][ratgdo:329]: [50962] Position update: 0.825575
[12:46:04.360][D][cover:170]: 'Door' - Publishing:
[12:46:04.360][D][cover:173]:   Position: 83%
[12:46:04.360][D][cover:186]:   Current Operation: OPENING
[12:46:04.593][D][ratgdo:329]: [51471] Position update: 0.856612
[12:46:04.614][D][cover:170]: 'Door' - Publishing:
[12:46:04.614][D][cover:173]:   Position: 86%
[12:46:04.614][D][cover:186]:   Current Operation: OPENING
[12:46:04.957][D][ratgdo_secplus2:270]: Ignoring byte (2): 12, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 4B, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 64, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 37, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 8D, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 6D, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): BE, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 62, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (1): 04, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 51, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): B9, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 56, baud: 9708
[12:46:05.047][D][ratgdo_secplus2:270]: Ignoring byte (0): 12, baud: 9708
[12:46:05.047][D][ratgdo_secplus2:270]: Ignoring byte (0): 62, baud: 9708
[12:46:05.047][W][component:214]: Component ratgdo took a long time for an operation (0.08 s).
[12:46:05.047][W][component:215]: Components should block for at most 20-30ms.
[12:46:05.097][D][ratgdo:329]: [51975] Position update: 0.887344
[12:46:05.113][D][cover:170]: 'Door' - Publishing:
[12:46:05.133][D][cover:173]:   Position: 89%
[12:46:05.133][D][cover:186]:   Current Operation: OPENING
[12:46:05.411][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:05.442][D][ratgdo_secplus2:450]: [52260] Encode for transmit rolling=0000498 fixed=020064d539 data=01010380
[12:46:05.442][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 88 26 D2 4A 84 D2 4D 21 51 15 6A 5C 54 8D 14 81]
[12:46:05.442][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:05.581][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:05.610][D][ratgdo_secplus2:450]: [52452] Encode for transmit rolling=0000498 fixed=020064d539 data=01000380
[12:46:05.610][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 88 26 D2 4A 84 D2 4D 25 51 15 6A 5C 54 8D 34 81]
[12:46:05.640][W][ratgdo.number:093]: Updating Rolling code counter to 1177.000000
[12:46:05.640][D][number:012]: 'Rolling code counter': Sending state 1177.000000
[12:46:05.640][D][ratgdo:329]: [52507] Position update: 0.919783
[12:46:05.652][D][cover:170]: 'Door' - Publishing:
[12:46:05.652][D][cover:173]:   Position: 92%
[12:46:05.652][D][cover:186]:   Current Operation: OPENING
[12:46:06.148][D][ratgdo:329]: [53015] Position update: 0.950758
[12:46:06.182][D][cover:170]: 'Door' - Publishing:
[12:46:06.182][D][cover:173]:   Position: 95%
[12:46:06.182][D][cover:186]:   Current Operation: OPENING
[12:46:06.766][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:06.767][D][ratgdo:329]: [53519] Position update: 0.981490
[12:46:06.820][D][cover:170]: 'Door' - Publishing:
[12:46:06.820][D][cover:173]:   Position: 98%
[12:46:06.820][D][cover:186]:   Current Operation: OPENING
[12:46:06.985][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:07.003][D][ratgdo_secplus2:450]: [53805] Encode for transmit rolling=0000499 fixed=020064d539 data=01010380
[12:46:07.003][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 86 1B 65 B5 7B 2D B6 4E 42 1C 26 6E 0E 8C 82 50]
[12:46:07.003][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:07.121][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:07.133][D][ratgdo_secplus2:450]: [53994] Encode for transmit rolling=0000499 fixed=020064d539 data=01000380
[12:46:07.133][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 86 1B 65 B5 7B 2D B6 4A 42 1C 26 6E 0E 8C 92 50]
[12:46:07.175][W][ratgdo.number:093]: Updating Rolling code counter to 1178.000000
[12:46:07.194][D][number:012]: 'Rolling code counter': Sending state 1178.000000
[12:46:07.194][D][ratgdo:329]: [54051] Position update: 1.013929
[12:46:07.194][D][cover:170]: 'Door' - Publishing:
[12:46:07.194][D][cover:173]:   Position: 100%
[12:46:07.194][D][cover:186]:   Current Operation: OPENING
[12:46:07.194][D][switch:012]: 'Status door' Turning ON.
[12:46:07.678][D][ratgdo:329]: [54553] Position update: 1.044539
[12:46:08.183][D][ratgdo:329]: [55060] Position update: 1.075454
[12:46:08.556][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:08.575][D][ratgdo_secplus2:450]: [55346] Encode for transmit rolling=000049a fixed=020064d539 data=01010380
[12:46:08.575][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 1A 4D 3E 0A 49 A4 95 A2 0F 23 E7 0F C4 52 65]
[12:46:08.575][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:08.662][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:08.677][D][ratgdo_secplus2:450]: [55534] Encode for transmit rolling=000049a fixed=020064d539 data=01000380
[12:46:08.677][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 1A 4D 3E 0A 49 A4 97 A2 0F 23 E7 0F C4 12 65]
[12:46:08.718][W][ratgdo.number:093]: Updating Rolling code counter to 1179.000000
[12:46:08.727][D][number:012]: 'Rolling code counter': Sending state 1179.000000
[12:46:08.727][D][ratgdo:329]: [55590] Position update: 1.107771
[12:46:09.222][D][ratgdo:329]: [56097] Position update: 1.138685
[12:46:09.724][D][ratgdo:329]: [56601] Position update: 1.169417
[12:46:10.031][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:10.127][D][ratgdo_secplus2:450]: [56885] Encode for transmit rolling=000049b fixed=020064d539 data=01010380
[12:46:10.127][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 37 DB 77 2E DB ED B0 94 3C 7E 03 B8 1F AE F6]
[12:46:10.127][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:10.203][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:10.236][D][ratgdo_secplus2:450]: [57075] Encode for transmit rolling=000049b fixed=020064d539 data=01000380
[12:46:10.236][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 37 DB 77 2E DB ED B2 94 3C 7E 03 B8 1F BE F6]
[12:46:10.256][W][ratgdo.number:093]: Updating Rolling code counter to 1180.000000
[12:46:10.256][D][number:012]: 'Rolling code counter': Sending state 1180.000000
[12:46:10.256][D][ratgdo:329]: [57128] Position update: 1.201551
[12:46:10.757][D][ratgdo:329]: [57632] Position update: 1.232283
[12:46:11.266][D][ratgdo:329]: [58138] Position update: 1.263136
[12:46:11.351][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:11.774][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:12.063][D][ratgdo_secplus2:450]: [58427] Encode for transmit rolling=000049c fixed=020064d539 data=01010380
[12:46:12.063][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 25 B6 C3 FC 96 59 63 81 15 4B DC 57 A9 34 99]
[12:46:12.063][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:12.063][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:12.063][D][ratgdo_secplus2:450]: [58614] Encode for transmit rolling=000049c fixed=020064d539 data=01000380
[12:46:12.063][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 25 B6 C3 FC 96 59 61 81 15 4B DC 57 A9 24 99]
[12:46:12.063][W][ratgdo.number:093]: Updating Rolling code counter to 1181.000000
[12:46:12.063][D][number:012]: 'Rolling code counter': Sending state 1181.000000
[12:46:12.063][D][ratgdo:329]: [58669] Position update: 1.295514
[12:46:12.328][D][ratgdo:329]: [59171] Position update: 1.326124
[12:46:12.810][D][ratgdo:329]: [59678] Position update: 1.357039
[12:46:13.099][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:13.150][D][ratgdo_secplus2:450]: [59968] Encode for transmit rolling=000049d fixed=020064d539 data=01010380
[12:46:13.150][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 00 20 18 91 20 82 07 62 0E 35 6E 0E 56 82 60]
[12:46:13.187][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:13.296][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:13.296][D][ratgdo_secplus2:450]: [60156] Encode for transmit rolling=000049d fixed=020064d539 data=01000380
[12:46:13.308][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 00 20 18 91 20 82 05 62 0E 35 6E 0E 56 92 60]
[12:46:13.339][W][ratgdo.number:093]: Updating Rolling code counter to 1182.000000
[12:46:13.355][D][number:012]: 'Rolling code counter': Sending state 1182.000000
[12:46:13.355][D][ratgdo:329]: [60211] Position update: 1.389539
[12:46:13.846][D][ratgdo:329]: [60718] Position update: 1.420454
[12:46:14.354][D][ratgdo:329]: [61226] Position update: 1.451429
[12:46:14.644][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:14.663][D][ratgdo_secplus2:450]: [61509] Encode for transmit rolling=000049e fixed=020064d539 data=01010380
[12:46:14.663][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 54 37 DF 78 D7 FB EF B9 12 2A A5 61 CA 44 F2 7B]
[12:46:14.677][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:14.859][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:14.864][D][ratgdo_secplus2:450]: [61700] Encode for transmit rolling=000049e fixed=020064d539 data=01000380
[12:46:14.864][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 54 37 DF 78 D7 FB EF BD 12 2A A5 61 CA 44 D2 7B]
[12:46:14.881][W][ratgdo.number:093]: Updating Rolling code counter to 1183.000000
[12:46:14.900][D][number:012]: 'Rolling code counter': Sending state 1183.000000
[12:46:14.900][D][ratgdo:329]: [61754] Position update: 1.483624
[12:46:15.386][D][ratgdo:329]: [62256] Position update: 1.514234
[12:46:15.902][D][ratgdo:329]: [62763] Position update: 1.545149
[12:46:16.185][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:16.207][D][ratgdo_secplus2:450]: [63051] Encode for transmit rolling=000049f fixed=020064d539 data=01010380
[12:46:16.207][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 08 20 15 69 20 82 47 04 3A FD 08 EA 5F BF 5B]
[12:46:16.227][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:16.427][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:16.469][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:16.469][D][ratgdo_secplus2:450]: [63243] Encode for transmit rolling=000049f fixed=020064d539 data=01000380
[12:46:16.469][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 08 20 15 69 20 82 43 04 3A FD 08 EA 5F FF 5B]
[12:46:16.469][W][ratgdo.number:093]: Updating Rolling code counter to 1184.000000
[12:46:16.469][D][number:012]: 'Rolling code counter': Sending state 1184.000000
[12:46:16.469][D][ratgdo:329]: [63296] Position update: 1.577649
[12:46:17.107][D][ratgdo:329]: [63803] Position update: 1.608563
[12:46:17.477][D][ratgdo:329]: [64306] Position update: 1.639234
[12:46:17.766][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:17.766][D][ratgdo_secplus2:450]: [64592] Encode for transmit rolling=00004a0 fixed=020064d539 data=01010380
[12:46:17.766][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 09 00 08 08 48 00 04 07 08 21 98 9A A1 32 0D 00]
[12:46:17.766][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:18.004][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:18.010][D][ratgdo_secplus2:450]: [64782] Encode for transmit rolling=00004a0 fixed=020064d539 data=01000380
[12:46:18.010][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 09 00 08 08 48 00 04 06 08 21 98 9A A1 32 4D 00]
[12:46:18.010][W][ratgdo.number:093]: Updating Rolling code counter to 1185.000000
[12:46:18.010][D][number:012]: 'Rolling code counter': Sending state 1185.000000
[12:46:18.010][D][ratgdo:329]: [64834] Position update: 1.671429
[12:46:18.531][D][ratgdo:329]: [65342] Position update: 1.702405
[12:46:19.054][D][ratgdo:329]: [65847] Position update: 1.733197
[12:46:19.272][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:19.295][D][ratgdo_secplus2:450]: [66134] Encode for transmit rolling=00004a1 fixed=020064d539 data=01010380
[12:46:19.295][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 08 26 D3 45 6C 92 4D 21 A9 06 23 65 47 E0 C2 25]
[12:46:19.307][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:19.488][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:19.644][D][ratgdo_secplus2:450]: [66324] Encode for transmit rolling=00004a1 fixed=020064d539 data=01000380
[12:46:19.644][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 08 26 D3 45 6C 92 4D 20 A9 06 23 65 47 E0 82 25]
[12:46:19.644][W][ratgdo.number:093]: Updating Rolling code counter to 1186.000000
[12:46:19.644][D][number:012]: 'Rolling code counter': Sending state 1186.000000
[12:46:19.644][D][ratgdo:329]: [66376] Position update: 1.765454
[12:46:20.819][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:20.850][D][ratgdo_secplus2:450]: [67679] Encode for transmit rolling=00004a2 fixed=020064d539 data=01010380
[12:46:20.850][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 0D 24 D1 DD 36 92 6A 58 2A 91 21 E2 56 7B 36]
[12:46:20.880][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:21.014][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:21.034][D][ratgdo_secplus2:450]: [67869] Encode for transmit rolling=00004a2 fixed=020064d539 data=01000380
[12:46:21.034][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 0D 24 D1 DD 36 92 68 58 2A 91 21 E2 56 5B 36]
[12:46:21.059][W][ratgdo.number:093]: Updating Rolling code counter to 1187.000000
[12:46:21.154][D][number:012]: 'Rolling code counter': Sending state 1187.000000
[12:46:21.366][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:22.363][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:22.533][D][ratgdo_secplus2:450]: [69221] Encode for transmit rolling=00004a3 fixed=020064d539 data=01010380
[12:46:22.533][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 32 C9 67 06 5B 24 95 49 15 0A D8 C7 A8 14 0B]
[12:46:22.533][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:22.570][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:22.570][D][ratgdo_secplus2:450]: [69408] Encode for transmit rolling=00004a3 fixed=020064d539 data=01000380
[12:46:22.832][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 32 C9 67 06 5B 24 97 49 15 0A D8 C7 A8 04 0B]
[12:46:22.832][W][ratgdo.number:093]: Updating Rolling code counter to 1188.000000
[12:46:22.832][D][number:012]: 'Rolling code counter': Sending state 1188.000000
[12:46:23.951][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:24.058][D][ratgdo_secplus2:450]: [70761] Encode for transmit rolling=00004a4 fixed=020064d539 data=01010380
[12:46:24.058][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 40 36 9B 6A 96 D3 6D B3 28 2A B1 2C 62 52 8B 00]
[12:46:24.058][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:24.147][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:24.302][D][ratgdo_secplus2:450]: [70949] Encode for transmit rolling=00004a4 fixed=020064d539 data=01000380
[12:46:24.302][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 40 36 9B 6A 96 D3 6D B7 28 2A B1 2C 62 52 CB 00]
[12:46:24.302][W][ratgdo.number:093]: Updating Rolling code counter to 1189.000000
[12:46:24.302][D][number:012]: 'Rolling code counter': Sending state 1189.000000
[12:46:25.467][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:25.484][D][ratgdo_secplus2:450]: [72300] Encode for transmit rolling=00004a5 fixed=020064d539 data=01010380
[12:46:25.484][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 25 B2 D1 FC B6 59 63 19 03 01 B3 87 60 68 16]
[12:46:25.484][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:25.638][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:25.670][D][ratgdo_secplus2:450]: [72488] Encode for transmit rolling=00004a5 fixed=020064d539 data=01000380
[12:46:25.670][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 25 B2 D1 FC B6 59 61 19 03 01 B3 87 60 48 16]
[12:46:27.028][W][ratgdo.number:093]: Updating Rolling code counter to 1190.000000
[12:46:27.028][D][number:012]: 'Rolling code counter': Sending state 1190.000000
[12:46:27.028][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:27.101][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:27.101][D][ratgdo_secplus2:450]: [73843] Encode for transmit rolling=00004a6 fixed=020064d539 data=01010380
[12:46:27.101][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 95 29 A4 D9 DD 36 9A 6A 88 23 98 91 E1 72 5D 2D]
[12:46:27.101][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:27.214][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:27.261][D][ratgdo_secplus2:450]: [74033] Encode for transmit rolling=00004a6 fixed=020064d539 data=01000380
[12:46:27.261][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 95 29 A4 D9 DD 36 9A 68 88 23 98 91 E1 72 4D 2D]
[12:46:27.261][W][ratgdo.number:093]: Updating Rolling code counter to 1191.000000
[12:46:27.261][D][number:012]: 'Rolling code counter': Sending state 1191.000000
[12:46:28.534][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:28.584][D][ratgdo_secplus2:450]: [75385] Encode for transmit rolling=00004a7 fixed=020064d539 data=01010380
[12:46:28.584][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3F FD FD 4F 7F BE FC 69 07 81 BC 47 72 18 0D]
[12:46:28.584][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:28.730][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:28.758][D][ratgdo_secplus2:450]: [75574] Encode for transmit rolling=00004a7 fixed=020064d539 data=01000380
[12:46:28.758][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3F FD FD 4F 7F BE FE 69 07 81 BC 47 72 08 0D]
[12:46:28.783][W][ratgdo.number:093]: Updating Rolling code counter to 1192.000000
[12:46:28.783][D][number:012]: 'Rolling code counter': Sending state 1192.000000
[12:46:30.091][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:30.125][D][ratgdo_secplus2:450]: [76931] Encode for transmit rolling=00004a8 fixed=020064d539 data=01010380
[12:46:30.125][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 1A 0D B6 DE 25 B6 93 4E 18 23 83 B3 A7 F2 21 36]
[12:46:30.125][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:30.287][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:30.352][D][ratgdo_secplus2:450]: [77121] Encode for transmit rolling=00004a8 fixed=020064d539 data=01000380
[12:46:30.352][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 1A 0D B6 DE 25 B6 93 4F 18 23 83 B3 A7 F2 01 36]
[12:46:30.398][W][ratgdo.number:093]: Updating Rolling code counter to 1193.000000
[12:46:30.398][D][number:012]: 'Rolling code counter': Sending state 1193.000000
[12:46:31.410][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:31.768][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:31.768][D][ratgdo_secplus2:450]: [78479] Encode for transmit rolling=00004a9 fixed=020064d539 data=01010380
[12:46:31.768][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 19 00 80 05 48 00 48 07 09 07 43 D3 07 A0 44 26]
[12:46:31.768][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:31.866][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:31.866][D][ratgdo_secplus2:450]: [78672] Encode for transmit rolling=00004a9 fixed=020064d539 data=01000380
[12:46:31.935][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 19 00 80 05 48 00 48 06 09 07 43 D3 07 A0 04 26]
[12:46:31.935][W][ratgdo.number:093]: Updating Rolling code counter to 1194.000000
[12:46:31.935][D][number:012]: 'Rolling code counter': Sending state 1194.000000
[12:46:33.222][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:33.747][D][ratgdo_secplus2:450]: [80025] Encode for transmit rolling=00004aa fixed=020064d539 data=01010380
[12:46:33.747][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 2F BF D8 CF BF FF 7A 68 27 93 B5 67 E0 51 2D]
[12:46:33.748][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:33.748][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:33.748][D][ratgdo_secplus2:450]: [80213] Encode for transmit rolling=00004aa fixed=020064d539 data=01000380
[12:46:33.748][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 2F BF D8 CF BF FF 7E 68 27 93 B5 67 E0 41 2D]
[12:46:33.748][W][ratgdo.number:093]: Updating Rolling code counter to 1195.000000
[12:46:33.748][D][number:012]: 'Rolling code counter': Sending state 1195.000000
[12:46:34.794][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:35.319][D][ratgdo_secplus2:450]: [81565] Encode for transmit rolling=00004ab fixed=020064d539 data=01010380
[12:46:35.319][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 0B 2C B5 79 64 92 5C 59 06 07 E8 87 C4 32 13]
[12:46:35.319][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:35.319][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:35.319][D][ratgdo_secplus2:450]: [81752] Encode for transmit rolling=00004ab fixed=020064d539 data=01000380
[12:46:35.319][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 0B 2C B5 79 64 92 58 59 06 07 E8 87 C4 12 13]
[12:46:35.319][W][ratgdo.number:093]: Updating Rolling code counter to 1196.000000
[12:46:35.319][D][number:012]: 'Rolling code counter': Sending state 1196.000000
[12:46:36.369][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:36.703][D][ratgdo_secplus2:450]: [83110] Encode for transmit rolling=00004ac fixed=020064d539 data=01010380
[12:46:36.703][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 1A 4D 31 B3 4D 34 95 48 21 D0 B5 61 3A 5D 2D]
[12:46:36.703][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:36.703][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:36.703][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:36.703][D][ratgdo_secplus2:450]: [83305] Encode for transmit rolling=00004ac fixed=020064d539 data=01000380
[12:46:36.703][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 1A 4D 31 B3 4D 34 91 48 21 D0 B5 61 3A 4D 2D]
[12:46:36.703][W][ratgdo.number:093]: Updating Rolling code counter to 1197.000000
[12:46:36.703][D][number:012]: 'Rolling code counter': Sending state 1197.000000
[12:46:37.943][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:37.956][D][ratgdo_secplus2:450]: [84656] Encode for transmit rolling=00004ad fixed=020064d539 data=01010380
[12:46:37.956][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 37 DB 78 97 DF 7D B0 29 07 03 E5 07 C0 C2 25]
[12:46:37.956][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:37.999][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:38.032][D][ratgdo_secplus2:450]: [84846] Encode for transmit rolling=00004ad fixed=020064d539 data=01000380
[12:46:38.032][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 37 DB 78 97 DF 7D B4 29 07 03 E5 07 C0 82 25]
[12:46:38.047][W][ratgdo.number:093]: Updating Rolling code counter to 1198.000000
[12:46:38.062][D][number:012]: 'Rolling code counter': Sending state 1198.000000
[12:46:39.357][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:39.363][D][ratgdo_secplus2:450]: [86199] Encode for transmit rolling=00004ae fixed=020064d539 data=01010380
[12:46:39.363][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A6 1B 6D 3E 03 4D 36 95 98 07 81 FD 67 72 11 2D]
[12:46:39.410][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:39.543][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:39.565][D][ratgdo_secplus2:450]: [86389] Encode for transmit rolling=00004ae fixed=020064d539 data=01000380
[12:46:39.565][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A6 1B 6D 3E 03 4D 36 97 98 07 81 FD 67 72 01 2D]
[12:46:39.590][W][ratgdo.number:093]: Updating Rolling code counter to 1199.000000
[12:46:39.602][D][number:012]: 'Rolling code counter': Sending state 1199.000000
[12:46:40.895][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:40.922][D][ratgdo_secplus2:450]: [87741] Encode for transmit rolling=00004af fixed=020064d539 data=01010380
[12:46:40.922][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 2C 96 53 B5 96 5B 2A 89 15 43 D8 47 E0 14 0B]
[12:46:40.933][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:41.091][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:41.107][D][ratgdo_secplus2:450]: [87930] Encode for transmit rolling=00004af fixed=020064d539 data=01000380
[12:46:41.107][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 2C 96 53 B5 96 5B 28 89 15 43 D8 47 E0 04 0B]
[12:46:41.136][W][ratgdo.number:093]: Updating Rolling code counter to 1200.000000
[12:46:41.162][D][number:012]: 'Rolling code counter': Sending state 1200.000000
[12:46:41.374][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:42.446][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:42.474][D][ratgdo_secplus2:450]: [89289] Encode for transmit rolling=00004b0 fixed=020064d539 data=01010380
[12:46:42.474][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 14 1F 7F FB B7 FF BE FC 68 27 11 FC 67 E0 51 2D]
[12:46:42.493][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:42.666][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:42.718][D][ratgdo_secplus2:450]: [89479] Encode for transmit rolling=00004b0 fixed=020064d539 data=01000380
[12:46:42.718][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 14 1F 7F FB B7 FF BE FD 68 27 11 FC 67 E0 41 2D]
[12:46:42.718][W][ratgdo.number:093]: Updating Rolling code counter to 1201.000000
[12:46:42.718][D][number:012]: 'Rolling code counter': Sending state 1201.000000
[

@mariusmuja
Copy link
Collaborator

Looks like ratgdo missed the status command again here:

[12:46:04.957][D][ratgdo_secplus2:270]: Ignoring byte (2): 12, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 4B, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 64, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 37, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 8D, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 6D, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): BE, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 62, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (1): 04, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 51, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): B9, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 56, baud: 9708
[12:46:05.047][D][ratgdo_secplus2:270]: Ignoring byte (0): 12, baud: 9708
[12:46:05.047][D][ratgdo_secplus2:270]: Ignoring byte (0): 62, baud: 9708

The door is open/stopped at this point and ratgdo doesn't know it and keeps trying to stop it through the ensure_door_action.

This is a bug, at the very least ensure_door_action should be limited to a maximum number of retries. Or maybe remove ensure_door_action altogether.

Btw, is this GDO the DC motor kind with a bettery backup. There's several people (me included) having issues with this kind of GDOs since the weather got cold, they don't bring the data line all the way to ground when transmitting which results in missed responses from the GDO.

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

It did eventually get unstuck and than crash: Here is the full log:

[12:45:28.012][D][api:102]: Accepted 192.168.107.8
[12:45:28.030][D][api.connection:1121]: Home Assistant 2024.2.0.dev0 (192.168.107.8): Connected successfully
[12:45:28.052][D][time:044]: Synchronized time: 2024-01-19 12:45:28
[12:45:34.796][D][api:102]: Accepted 192.168.107.8
[12:45:34.818][D][api.connection:1121]: ESPHome Logs 2023.12.7 (192.168.107.8): Connected successfully
[12:45:34.836][D][time:044]: Synchronized time: 2024-01-19 12:45:34
[12:45:49.965][D][cover:076]: 'Door' - Setting
[12:45:50.003][D][cover:084]:   Position: 79%
[12:45:50.003][D][ratgdo:540]: Moving to position 0.79 in 3.7s
[12:45:50.003][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010100
[12:45:50.003][D][ratgdo_secplus2:450]: [36845] Encode for transmit rolling=0000494 fixed=020064d539 data=01010080
[12:45:50.013][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 99 00 10 0A 94 80 48 07 61 11 48 90 D1 3B A4 96]
[12:45:50.013][W][component:214]: Component api took a long time for an operation (0.05 s).
[12:45:50.013][W][component:215]: Components should block for at most 20-30ms.
[12:45:50.205][D][ratgdo_secplus2:279]: Baud: 9708
[12:45:50.217][D][ratgdo_secplus2:320]: Received packet: : [55 01 00 49 34 99 0D 11 08 0D 02 42 01 44 31 2B AA 12 5C]
[12:45:50.217][D][ratgdo_secplus2:358]: [37016] received rolling=0025a1b fixed=007ccab006 data=000c01a1
[12:45:50.217][D][ratgdo_secplus2:366]: cmd=0a1 (PAIR_3_RESP) byte2=00 byte1=0c nibble=1
[12:45:50.217][D][ratgdo_secplus2:373]: Handle command: PAIR_3_RESP
[12:45:50.217][D][ratgdo_secplus2:415]: Done handle command: PAIR_3_RESP
[12:45:50.217][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010000
[12:45:50.217][D][ratgdo_secplus2:450]: [37052] Encode for transmit rolling=0000494 fixed=020064d539 data=01000080
[12:45:50.217][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 99 00 10 0A 94 80 48 05 61 11 48 90 D1 3B B4 96]
[12:45:50.240][W][ratgdo.number:093]: Updating Rolling code counter to 1173.000000
[12:45:50.240][D][number:012]: 'Rolling code counter': Sending state 1173.000000
[12:45:51.105][D][ratgdo_secplus2:279]: Baud: 9708
[12:45:51.132][D][ratgdo_secplus2:320]: Received packet: : [55 01 00 18 2D A4 4B 62 9E 81 34 21 33 CB 3D 02 99 A5 95]
[12:45:51.253][D][ratgdo_secplus2:358]: [38007] received rolling=0025a1c fixed=007ccab006 data=42600581
[12:45:51.253][D][ratgdo_secplus2:366]: cmd=081 (STATUS) byte2=42 byte1=60 nibble=5
[12:45:51.253][D][ratgdo_secplus2:373]: Handle command: STATUS
[12:45:51.253][D][ratgdo:095]: Door state=CLOSING
[12:45:51.253][D][ratgdo:305]: Schedule position sync: delta -0.210000, start position: 1.000000, start moving: 38029
[12:45:51.253][D][ratgdo:204]: Light state=ON
[12:45:51.262][D][ratgdo:210]: Lock state=UNLOCKED
[12:45:51.262][D][ratgdo:189]: Learn state=INACTIVE
[12:45:51.262][D][ratgdo_secplus2:415]: Done handle command: STATUS
[12:45:51.262][W][component:214]: Component ratgdo took a long time for an operation (0.05 s).
[12:45:51.262][W][component:215]: Components should block for at most 20-30ms.
[12:45:51.262][D][ratgdo:329]: [38090] Position update: 0.996494
[12:45:51.262][D][cover:170]: 'Door' - Publishing:
[12:45:51.262][D][cover:173]:   Position: 100%
[12:45:51.262][D][cover:186]:   Current Operation: CLOSING
[12:45:51.352][D][esp8266.preferences:238]: Saving preferences to flash...
[12:45:51.779][D][ratgdo:329]: [38597] Position update: 0.967356
[12:45:51.786][D][cover:170]: 'Door' - Publishing:
[12:45:51.786][D][cover:173]:   Position: 97%
[12:45:51.786][D][cover:186]:   Current Operation: CLOSING
[12:45:52.318][D][ratgdo:329]: [39108] Position update: 0.937989
[12:45:52.328][D][cover:170]: 'Door' - Publishing:
[12:45:52.328][D][cover:173]:   Position: 94%
[12:45:52.328][D][cover:186]:   Current Operation: CLOSING
[12:45:52.828][D][ratgdo:329]: [39612] Position update: 0.909023
[12:45:52.837][D][cover:170]: 'Door' - Publishing:
[12:45:52.837][D][cover:173]:   Position: 91%
[12:45:52.837][D][cover:186]:   Current Operation: CLOSING
[12:45:53.240][D][ratgdo:329]: [40116] Position update: 0.880057
[12:45:53.256][D][cover:170]: 'Door' - Publishing:
[12:45:53.256][D][cover:173]:   Position: 88%
[12:45:53.256][D][cover:186]:   Current Operation: CLOSING
[12:45:53.715][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:45:54.767][D][ratgdo_secplus2:450]: [40544] Encode for transmit rolling=0000495 fixed=020064d539 data=01010380
[12:45:54.767][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 98 04 92 43 B0 12 01 27 52 0F 23 FA CE E0 A2 53]
[12:45:54.767][D][ratgdo:508]: Ensure door command, setup door command retry
[12:45:54.767][D][ratgdo:329]: [40623] Position update: 0.850920
[12:45:54.767][D][cover:170]: 'Door' - Publishing:
[12:45:54.768][D][cover:173]:   Position: 85%
[12:45:54.768][D][cover:186]:   Current Operation: CLOSING
[12:45:54.768][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:45:54.768][D][ratgdo_secplus2:450]: [40731] Encode for transmit rolling=0000495 fixed=020064d539 data=01000380
[12:45:54.768][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 98 04 92 43 B0 12 01 25 52 0F 23 FA CE E0 82 53]
[12:45:54.768][W][ratgdo.number:093]: Updating Rolling code counter to 1174.000000
[12:45:54.768][D][number:012]: 'Rolling code counter': Sending state 1174.000000
[12:45:54.768][D][ratgdo:329]: [41125] Position update: 0.822069
[12:45:54.768][D][cover:170]: 'Door' - Publishing:
[12:45:54.768][D][cover:173]:   Position: 82%
[12:45:54.768][D][cover:186]:   Current Operation: CLOSING
[12:45:54.768][D][ratgdo:329]: [41628] Position update: 0.793161
[12:45:54.768][D][cover:170]: 'Door' - Publishing:
[12:45:54.768][D][cover:173]:   Position: 79%
[12:45:55.998][D][cover:186]:   Current Operation: CLOSING
[12:45:55.998][D][ratgdo_secplus2:279]: Baud: 9708
[12:45:55.998][D][ratgdo_secplus2:320]: Received packet: : [55 01 00 16 32 4B B4 9D 61 77 EB 12 1D 75 D6 85 45 D2 7A]
[12:45:55.998][D][ratgdo_secplus2:358]: [41684] received rolling=0025a1d fixed=007ccab006 data=42600381
[12:45:55.998][D][ratgdo_secplus2:366]: cmd=081 (STATUS) byte2=42 byte1=60 nibble=3
[12:45:55.998][D][ratgdo_secplus2:373]: Handle command: STATUS
[12:45:55.998][D][ratgdo:095]: Door state=STOPPED
[12:45:55.998][D][ratgdo:329]: [41708] Position update: 0.788563
[12:45:55.998][D][ratgdo:555]: Cancelling position callbacks
[12:45:55.998][D][ratgdo:504]: Received door status, cancel door command retry
[12:45:55.998][D][ratgdo:204]: Light state=ON
[12:45:55.998][D][ratgdo:210]: Lock state=UNLOCKED
[12:45:55.998][D][ratgdo:189]: Learn state=INACTIVE
[12:45:55.998][D][ratgdo_secplus2:415]: Done handle command: STATUS
[12:45:55.998][W][component:214]: Component ratgdo took a long time for an operation (0.06 s).
[12:45:55.998][W][component:215]: Components should block for at most 20-30ms.
[12:45:55.998][D][cover:170]: 'Door' - Publishing:
[12:45:55.998][D][cover:173]:   Position: 79%
[12:45:55.998][D][cover:186]:   Current Operation: IDLE
[12:45:56.354][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:02.300][D][cover:076]: 'Door' - Setting
[12:46:02.341][D][cover:084]:   Position: 88%
[12:46:02.342][D][ratgdo:540]: Moving to position 0.88 in 1.5s
[12:46:02.342][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010101
[12:46:02.342][D][ratgdo_secplus2:450]: [49175] Encode for transmit rolling=0000496 fixed=020064d539 data=01010180
[12:46:02.342][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 42 0B 25 91 F9 2C 92 5C 02 0E 66 41 4C 86 D2 5D]
[12:46:02.342][W][component:214]: Component api took a long time for an operation (0.05 s).
[12:46:02.349][W][component:215]: Components should block for at most 20-30ms.
[12:46:02.505][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010001
[12:46:03.528][D][ratgdo_secplus2:450]: [49370] Encode for transmit rolling=0000496 fixed=020064d539 data=01000180
[12:46:03.528][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 42 0B 25 91 F9 2C 92 58 02 0E 66 41 4C 86 92 5D]
[12:46:03.528][W][ratgdo.number:093]: Updating Rolling code counter to 1175.000000
[12:46:03.528][D][number:012]: 'Rolling code counter': Sending state 1175.000000
[12:46:03.528][D][ratgdo_secplus2:279]: Baud: 9708
[12:46:03.528][D][ratgdo_secplus2:320]: Received packet: : [55 01 00 81 34 D1 2D 03 1F 24 98 81 0A 29 87 F2 AD 34 D4]
[12:46:03.528][D][ratgdo_secplus2:358]: [50331] received rolling=0025a1e fixed=007ccab006 data=42600481
[12:46:03.528][D][ratgdo_secplus2:366]: cmd=081 (STATUS) byte2=42 byte1=60 nibble=4
[12:46:03.528][D][ratgdo_secplus2:373]: Handle command: STATUS
[12:46:03.528][D][ratgdo:095]: Door state=OPENING
[12:46:03.528][D][ratgdo:305]: Schedule position sync: delta 0.091437, start position: 0.788563, start moving: 50355
[12:46:03.528][D][ratgdo:204]: Light state=ON
[12:46:03.528][D][ratgdo:210]: Lock state=UNLOCKED
[12:46:03.528][D][ratgdo:189]: Learn state=INACTIVE
[12:46:03.528][D][ratgdo_secplus2:415]: Done handle command: STATUS
[12:46:03.528][W][component:214]: Component ratgdo took a long time for an operation (0.05 s).
[12:46:03.528][W][component:215]: Components should block for at most 20-30ms.
[12:46:03.620][D][ratgdo:329]: [50415] Position update: 0.792222
[12:46:03.620][D][cover:170]: 'Door' - Publishing:
[12:46:03.620][D][cover:173]:   Position: 79%
[12:46:03.620][D][cover:186]:   Current Operation: OPENING
[12:46:03.866][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:03.937][D][ratgdo_secplus2:450]: [50720] Encode for transmit rolling=0000497 fixed=020064d539 data=01010380
[12:46:03.937][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 02 08 27 A2 41 24 95 A4 31 FC 9A F8 1F 3F 9B]
[12:46:03.937][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:04.057][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:04.152][D][ratgdo_secplus2:450]: [50909] Encode for transmit rolling=0000497 fixed=020064d539 data=01000380
[12:46:04.152][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 02 08 27 A2 41 24 91 A4 31 FC 9A F8 1F 7F 9B]
[12:46:04.152][W][ratgdo.number:093]: Updating Rolling code counter to 1176.000000
[12:46:04.152][D][number:012]: 'Rolling code counter': Sending state 1176.000000
[12:46:04.152][D][ratgdo:329]: [50962] Position update: 0.825575
[12:46:04.360][D][cover:170]: 'Door' - Publishing:
[12:46:04.360][D][cover:173]:   Position: 83%
[12:46:04.360][D][cover:186]:   Current Operation: OPENING
[12:46:04.593][D][ratgdo:329]: [51471] Position update: 0.856612
[12:46:04.614][D][cover:170]: 'Door' - Publishing:
[12:46:04.614][D][cover:173]:   Position: 86%
[12:46:04.614][D][cover:186]:   Current Operation: OPENING
[12:46:04.957][D][ratgdo_secplus2:270]: Ignoring byte (2): 12, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 4B, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 64, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 37, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 8D, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 6D, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): BE, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 62, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (1): 04, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 51, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): B9, baud: 9708
[12:46:05.046][D][ratgdo_secplus2:270]: Ignoring byte (0): 56, baud: 9708
[12:46:05.047][D][ratgdo_secplus2:270]: Ignoring byte (0): 12, baud: 9708
[12:46:05.047][D][ratgdo_secplus2:270]: Ignoring byte (0): 62, baud: 9708
[12:46:05.047][W][component:214]: Component ratgdo took a long time for an operation (0.08 s).
[12:46:05.047][W][component:215]: Components should block for at most 20-30ms.
[12:46:05.097][D][ratgdo:329]: [51975] Position update: 0.887344
[12:46:05.113][D][cover:170]: 'Door' - Publishing:
[12:46:05.133][D][cover:173]:   Position: 89%
[12:46:05.133][D][cover:186]:   Current Operation: OPENING
[12:46:05.411][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:05.442][D][ratgdo_secplus2:450]: [52260] Encode for transmit rolling=0000498 fixed=020064d539 data=01010380
[12:46:05.442][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 88 26 D2 4A 84 D2 4D 21 51 15 6A 5C 54 8D 14 81]
[12:46:05.442][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:05.581][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:05.610][D][ratgdo_secplus2:450]: [52452] Encode for transmit rolling=0000498 fixed=020064d539 data=01000380
[12:46:05.610][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 88 26 D2 4A 84 D2 4D 25 51 15 6A 5C 54 8D 34 81]
[12:46:05.640][W][ratgdo.number:093]: Updating Rolling code counter to 1177.000000
[12:46:05.640][D][number:012]: 'Rolling code counter': Sending state 1177.000000
[12:46:05.640][D][ratgdo:329]: [52507] Position update: 0.919783
[12:46:05.652][D][cover:170]: 'Door' - Publishing:
[12:46:05.652][D][cover:173]:   Position: 92%
[12:46:05.652][D][cover:186]:   Current Operation: OPENING
[12:46:06.148][D][ratgdo:329]: [53015] Position update: 0.950758
[12:46:06.182][D][cover:170]: 'Door' - Publishing:
[12:46:06.182][D][cover:173]:   Position: 95%
[12:46:06.182][D][cover:186]:   Current Operation: OPENING
[12:46:06.766][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:06.767][D][ratgdo:329]: [53519] Position update: 0.981490
[12:46:06.820][D][cover:170]: 'Door' - Publishing:
[12:46:06.820][D][cover:173]:   Position: 98%
[12:46:06.820][D][cover:186]:   Current Operation: OPENING
[12:46:06.985][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:07.003][D][ratgdo_secplus2:450]: [53805] Encode for transmit rolling=0000499 fixed=020064d539 data=01010380
[12:46:07.003][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 86 1B 65 B5 7B 2D B6 4E 42 1C 26 6E 0E 8C 82 50]
[12:46:07.003][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:07.121][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:07.133][D][ratgdo_secplus2:450]: [53994] Encode for transmit rolling=0000499 fixed=020064d539 data=01000380
[12:46:07.133][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 86 1B 65 B5 7B 2D B6 4A 42 1C 26 6E 0E 8C 92 50]
[12:46:07.175][W][ratgdo.number:093]: Updating Rolling code counter to 1178.000000
[12:46:07.194][D][number:012]: 'Rolling code counter': Sending state 1178.000000
[12:46:07.194][D][ratgdo:329]: [54051] Position update: 1.013929
[12:46:07.194][D][cover:170]: 'Door' - Publishing:
[12:46:07.194][D][cover:173]:   Position: 100%
[12:46:07.194][D][cover:186]:   Current Operation: OPENING
[12:46:07.194][D][switch:012]: 'Status door' Turning ON.
[12:46:07.678][D][ratgdo:329]: [54553] Position update: 1.044539
[12:46:08.183][D][ratgdo:329]: [55060] Position update: 1.075454
[12:46:08.556][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:08.575][D][ratgdo_secplus2:450]: [55346] Encode for transmit rolling=000049a fixed=020064d539 data=01010380
[12:46:08.575][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 1A 4D 3E 0A 49 A4 95 A2 0F 23 E7 0F C4 52 65]
[12:46:08.575][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:08.662][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:08.677][D][ratgdo_secplus2:450]: [55534] Encode for transmit rolling=000049a fixed=020064d539 data=01000380
[12:46:08.677][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 1A 4D 3E 0A 49 A4 97 A2 0F 23 E7 0F C4 12 65]
[12:46:08.718][W][ratgdo.number:093]: Updating Rolling code counter to 1179.000000
[12:46:08.727][D][number:012]: 'Rolling code counter': Sending state 1179.000000
[12:46:08.727][D][ratgdo:329]: [55590] Position update: 1.107771
[12:46:09.222][D][ratgdo:329]: [56097] Position update: 1.138685
[12:46:09.724][D][ratgdo:329]: [56601] Position update: 1.169417
[12:46:10.031][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:10.127][D][ratgdo_secplus2:450]: [56885] Encode for transmit rolling=000049b fixed=020064d539 data=01010380
[12:46:10.127][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 37 DB 77 2E DB ED B0 94 3C 7E 03 B8 1F AE F6]
[12:46:10.127][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:10.203][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:10.236][D][ratgdo_secplus2:450]: [57075] Encode for transmit rolling=000049b fixed=020064d539 data=01000380
[12:46:10.236][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 37 DB 77 2E DB ED B2 94 3C 7E 03 B8 1F BE F6]
[12:46:10.256][W][ratgdo.number:093]: Updating Rolling code counter to 1180.000000
[12:46:10.256][D][number:012]: 'Rolling code counter': Sending state 1180.000000
[12:46:10.256][D][ratgdo:329]: [57128] Position update: 1.201551
[12:46:10.757][D][ratgdo:329]: [57632] Position update: 1.232283
[12:46:11.266][D][ratgdo:329]: [58138] Position update: 1.263136
[12:46:11.351][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:11.774][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:12.063][D][ratgdo_secplus2:450]: [58427] Encode for transmit rolling=000049c fixed=020064d539 data=01010380
[12:46:12.063][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 25 B6 C3 FC 96 59 63 81 15 4B DC 57 A9 34 99]
[12:46:12.063][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:12.063][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:12.063][D][ratgdo_secplus2:450]: [58614] Encode for transmit rolling=000049c fixed=020064d539 data=01000380
[12:46:12.063][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 25 B6 C3 FC 96 59 61 81 15 4B DC 57 A9 24 99]
[12:46:12.063][W][ratgdo.number:093]: Updating Rolling code counter to 1181.000000
[12:46:12.063][D][number:012]: 'Rolling code counter': Sending state 1181.000000
[12:46:12.063][D][ratgdo:329]: [58669] Position update: 1.295514
[12:46:12.328][D][ratgdo:329]: [59171] Position update: 1.326124
[12:46:12.810][D][ratgdo:329]: [59678] Position update: 1.357039
[12:46:13.099][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:13.150][D][ratgdo_secplus2:450]: [59968] Encode for transmit rolling=000049d fixed=020064d539 data=01010380
[12:46:13.150][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 00 20 18 91 20 82 07 62 0E 35 6E 0E 56 82 60]
[12:46:13.187][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:13.296][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:13.296][D][ratgdo_secplus2:450]: [60156] Encode for transmit rolling=000049d fixed=020064d539 data=01000380
[12:46:13.308][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 00 20 18 91 20 82 05 62 0E 35 6E 0E 56 92 60]
[12:46:13.339][W][ratgdo.number:093]: Updating Rolling code counter to 1182.000000
[12:46:13.355][D][number:012]: 'Rolling code counter': Sending state 1182.000000
[12:46:13.355][D][ratgdo:329]: [60211] Position update: 1.389539
[12:46:13.846][D][ratgdo:329]: [60718] Position update: 1.420454
[12:46:14.354][D][ratgdo:329]: [61226] Position update: 1.451429
[12:46:14.644][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:14.663][D][ratgdo_secplus2:450]: [61509] Encode for transmit rolling=000049e fixed=020064d539 data=01010380
[12:46:14.663][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 54 37 DF 78 D7 FB EF B9 12 2A A5 61 CA 44 F2 7B]
[12:46:14.677][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:14.859][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:14.864][D][ratgdo_secplus2:450]: [61700] Encode for transmit rolling=000049e fixed=020064d539 data=01000380
[12:46:14.864][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 54 37 DF 78 D7 FB EF BD 12 2A A5 61 CA 44 D2 7B]
[12:46:14.881][W][ratgdo.number:093]: Updating Rolling code counter to 1183.000000
[12:46:14.900][D][number:012]: 'Rolling code counter': Sending state 1183.000000
[12:46:14.900][D][ratgdo:329]: [61754] Position update: 1.483624
[12:46:15.386][D][ratgdo:329]: [62256] Position update: 1.514234
[12:46:15.902][D][ratgdo:329]: [62763] Position update: 1.545149
[12:46:16.185][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:16.207][D][ratgdo_secplus2:450]: [63051] Encode for transmit rolling=000049f fixed=020064d539 data=01010380
[12:46:16.207][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 08 20 15 69 20 82 47 04 3A FD 08 EA 5F BF 5B]
[12:46:16.227][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:16.427][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:16.469][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:16.469][D][ratgdo_secplus2:450]: [63243] Encode for transmit rolling=000049f fixed=020064d539 data=01000380
[12:46:16.469][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 08 20 15 69 20 82 43 04 3A FD 08 EA 5F FF 5B]
[12:46:16.469][W][ratgdo.number:093]: Updating Rolling code counter to 1184.000000
[12:46:16.469][D][number:012]: 'Rolling code counter': Sending state 1184.000000
[12:46:16.469][D][ratgdo:329]: [63296] Position update: 1.577649
[12:46:17.107][D][ratgdo:329]: [63803] Position update: 1.608563
[12:46:17.477][D][ratgdo:329]: [64306] Position update: 1.639234
[12:46:17.766][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:17.766][D][ratgdo_secplus2:450]: [64592] Encode for transmit rolling=00004a0 fixed=020064d539 data=01010380
[12:46:17.766][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 09 00 08 08 48 00 04 07 08 21 98 9A A1 32 0D 00]
[12:46:17.766][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:18.004][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:18.010][D][ratgdo_secplus2:450]: [64782] Encode for transmit rolling=00004a0 fixed=020064d539 data=01000380
[12:46:18.010][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 09 00 08 08 48 00 04 06 08 21 98 9A A1 32 4D 00]
[12:46:18.010][W][ratgdo.number:093]: Updating Rolling code counter to 1185.000000
[12:46:18.010][D][number:012]: 'Rolling code counter': Sending state 1185.000000
[12:46:18.010][D][ratgdo:329]: [64834] Position update: 1.671429
[12:46:18.531][D][ratgdo:329]: [65342] Position update: 1.702405
[12:46:19.054][D][ratgdo:329]: [65847] Position update: 1.733197
[12:46:19.272][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:19.295][D][ratgdo_secplus2:450]: [66134] Encode for transmit rolling=00004a1 fixed=020064d539 data=01010380
[12:46:19.295][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 08 26 D3 45 6C 92 4D 21 A9 06 23 65 47 E0 C2 25]
[12:46:19.307][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:19.488][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:19.644][D][ratgdo_secplus2:450]: [66324] Encode for transmit rolling=00004a1 fixed=020064d539 data=01000380
[12:46:19.644][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 08 26 D3 45 6C 92 4D 20 A9 06 23 65 47 E0 82 25]
[12:46:19.644][W][ratgdo.number:093]: Updating Rolling code counter to 1186.000000
[12:46:19.644][D][number:012]: 'Rolling code counter': Sending state 1186.000000
[12:46:19.644][D][ratgdo:329]: [66376] Position update: 1.765454
[12:46:20.819][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:20.850][D][ratgdo_secplus2:450]: [67679] Encode for transmit rolling=00004a2 fixed=020064d539 data=01010380
[12:46:20.850][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 0D 24 D1 DD 36 92 6A 58 2A 91 21 E2 56 7B 36]
[12:46:20.880][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:21.014][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:21.034][D][ratgdo_secplus2:450]: [67869] Encode for transmit rolling=00004a2 fixed=020064d539 data=01000380
[12:46:21.034][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 0D 24 D1 DD 36 92 68 58 2A 91 21 E2 56 5B 36]
[12:46:21.059][W][ratgdo.number:093]: Updating Rolling code counter to 1187.000000
[12:46:21.154][D][number:012]: 'Rolling code counter': Sending state 1187.000000
[12:46:21.366][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:22.363][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:22.533][D][ratgdo_secplus2:450]: [69221] Encode for transmit rolling=00004a3 fixed=020064d539 data=01010380
[12:46:22.533][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 32 C9 67 06 5B 24 95 49 15 0A D8 C7 A8 14 0B]
[12:46:22.533][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:22.570][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:22.570][D][ratgdo_secplus2:450]: [69408] Encode for transmit rolling=00004a3 fixed=020064d539 data=01000380
[12:46:22.832][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 32 C9 67 06 5B 24 97 49 15 0A D8 C7 A8 04 0B]
[12:46:22.832][W][ratgdo.number:093]: Updating Rolling code counter to 1188.000000
[12:46:22.832][D][number:012]: 'Rolling code counter': Sending state 1188.000000
[12:46:23.951][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:24.058][D][ratgdo_secplus2:450]: [70761] Encode for transmit rolling=00004a4 fixed=020064d539 data=01010380
[12:46:24.058][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 40 36 9B 6A 96 D3 6D B3 28 2A B1 2C 62 52 8B 00]
[12:46:24.058][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:24.147][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:24.302][D][ratgdo_secplus2:450]: [70949] Encode for transmit rolling=00004a4 fixed=020064d539 data=01000380
[12:46:24.302][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 40 36 9B 6A 96 D3 6D B7 28 2A B1 2C 62 52 CB 00]
[12:46:24.302][W][ratgdo.number:093]: Updating Rolling code counter to 1189.000000
[12:46:24.302][D][number:012]: 'Rolling code counter': Sending state 1189.000000
[12:46:25.467][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:25.484][D][ratgdo_secplus2:450]: [72300] Encode for transmit rolling=00004a5 fixed=020064d539 data=01010380
[12:46:25.484][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 25 B2 D1 FC B6 59 63 19 03 01 B3 87 60 68 16]
[12:46:25.484][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:25.638][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:25.670][D][ratgdo_secplus2:450]: [72488] Encode for transmit rolling=00004a5 fixed=020064d539 data=01000380
[12:46:25.670][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 25 B2 D1 FC B6 59 61 19 03 01 B3 87 60 48 16]
[12:46:27.028][W][ratgdo.number:093]: Updating Rolling code counter to 1190.000000
[12:46:27.028][D][number:012]: 'Rolling code counter': Sending state 1190.000000
[12:46:27.028][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:27.101][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:27.101][D][ratgdo_secplus2:450]: [73843] Encode for transmit rolling=00004a6 fixed=020064d539 data=01010380
[12:46:27.101][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 95 29 A4 D9 DD 36 9A 6A 88 23 98 91 E1 72 5D 2D]
[12:46:27.101][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:27.214][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:27.261][D][ratgdo_secplus2:450]: [74033] Encode for transmit rolling=00004a6 fixed=020064d539 data=01000380
[12:46:27.261][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 95 29 A4 D9 DD 36 9A 68 88 23 98 91 E1 72 4D 2D]
[12:46:27.261][W][ratgdo.number:093]: Updating Rolling code counter to 1191.000000
[12:46:27.261][D][number:012]: 'Rolling code counter': Sending state 1191.000000
[12:46:28.534][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:28.584][D][ratgdo_secplus2:450]: [75385] Encode for transmit rolling=00004a7 fixed=020064d539 data=01010380
[12:46:28.584][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3F FD FD 4F 7F BE FC 69 07 81 BC 47 72 18 0D]
[12:46:28.584][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:28.730][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:28.758][D][ratgdo_secplus2:450]: [75574] Encode for transmit rolling=00004a7 fixed=020064d539 data=01000380
[12:46:28.758][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3F FD FD 4F 7F BE FE 69 07 81 BC 47 72 08 0D]
[12:46:28.783][W][ratgdo.number:093]: Updating Rolling code counter to 1192.000000
[12:46:28.783][D][number:012]: 'Rolling code counter': Sending state 1192.000000
[12:46:30.091][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:30.125][D][ratgdo_secplus2:450]: [76931] Encode for transmit rolling=00004a8 fixed=020064d539 data=01010380
[12:46:30.125][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 1A 0D B6 DE 25 B6 93 4E 18 23 83 B3 A7 F2 21 36]
[12:46:30.125][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:30.287][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:30.352][D][ratgdo_secplus2:450]: [77121] Encode for transmit rolling=00004a8 fixed=020064d539 data=01000380
[12:46:30.352][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 1A 0D B6 DE 25 B6 93 4F 18 23 83 B3 A7 F2 01 36]
[12:46:30.398][W][ratgdo.number:093]: Updating Rolling code counter to 1193.000000
[12:46:30.398][D][number:012]: 'Rolling code counter': Sending state 1193.000000
[12:46:31.410][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:31.768][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:31.768][D][ratgdo_secplus2:450]: [78479] Encode for transmit rolling=00004a9 fixed=020064d539 data=01010380
[12:46:31.768][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 19 00 80 05 48 00 48 07 09 07 43 D3 07 A0 44 26]
[12:46:31.768][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:31.866][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:31.866][D][ratgdo_secplus2:450]: [78672] Encode for transmit rolling=00004a9 fixed=020064d539 data=01000380
[12:46:31.935][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 19 00 80 05 48 00 48 06 09 07 43 D3 07 A0 04 26]
[12:46:31.935][W][ratgdo.number:093]: Updating Rolling code counter to 1194.000000
[12:46:31.935][D][number:012]: 'Rolling code counter': Sending state 1194.000000
[12:46:33.222][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:33.747][D][ratgdo_secplus2:450]: [80025] Encode for transmit rolling=00004aa fixed=020064d539 data=01010380
[12:46:33.747][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 2F BF D8 CF BF FF 7A 68 27 93 B5 67 E0 51 2D]
[12:46:33.748][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:33.748][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:33.748][D][ratgdo_secplus2:450]: [80213] Encode for transmit rolling=00004aa fixed=020064d539 data=01000380
[12:46:33.748][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 2F BF D8 CF BF FF 7E 68 27 93 B5 67 E0 41 2D]
[12:46:33.748][W][ratgdo.number:093]: Updating Rolling code counter to 1195.000000
[12:46:33.748][D][number:012]: 'Rolling code counter': Sending state 1195.000000
[12:46:34.794][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:35.319][D][ratgdo_secplus2:450]: [81565] Encode for transmit rolling=00004ab fixed=020064d539 data=01010380
[12:46:35.319][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 0B 2C B5 79 64 92 5C 59 06 07 E8 87 C4 32 13]
[12:46:35.319][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:35.319][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:35.319][D][ratgdo_secplus2:450]: [81752] Encode for transmit rolling=00004ab fixed=020064d539 data=01000380
[12:46:35.319][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 0B 2C B5 79 64 92 58 59 06 07 E8 87 C4 12 13]
[12:46:35.319][W][ratgdo.number:093]: Updating Rolling code counter to 1196.000000
[12:46:35.319][D][number:012]: 'Rolling code counter': Sending state 1196.000000
[12:46:36.369][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:36.703][D][ratgdo_secplus2:450]: [83110] Encode for transmit rolling=00004ac fixed=020064d539 data=01010380
[12:46:36.703][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 1A 4D 31 B3 4D 34 95 48 21 D0 B5 61 3A 5D 2D]
[12:46:36.703][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:36.703][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:36.703][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:36.703][D][ratgdo_secplus2:450]: [83305] Encode for transmit rolling=00004ac fixed=020064d539 data=01000380
[12:46:36.703][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 1A 4D 31 B3 4D 34 91 48 21 D0 B5 61 3A 4D 2D]
[12:46:36.703][W][ratgdo.number:093]: Updating Rolling code counter to 1197.000000
[12:46:36.703][D][number:012]: 'Rolling code counter': Sending state 1197.000000
[12:46:37.943][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:37.956][D][ratgdo_secplus2:450]: [84656] Encode for transmit rolling=00004ad fixed=020064d539 data=01010380
[12:46:37.956][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 37 DB 78 97 DF 7D B0 29 07 03 E5 07 C0 C2 25]
[12:46:37.956][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:37.999][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:38.032][D][ratgdo_secplus2:450]: [84846] Encode for transmit rolling=00004ad fixed=020064d539 data=01000380
[12:46:38.032][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 37 DB 78 97 DF 7D B4 29 07 03 E5 07 C0 82 25]
[12:46:38.047][W][ratgdo.number:093]: Updating Rolling code counter to 1198.000000
[12:46:38.062][D][number:012]: 'Rolling code counter': Sending state 1198.000000
[12:46:39.357][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:39.363][D][ratgdo_secplus2:450]: [86199] Encode for transmit rolling=00004ae fixed=020064d539 data=01010380
[12:46:39.363][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A6 1B 6D 3E 03 4D 36 95 98 07 81 FD 67 72 11 2D]
[12:46:39.410][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:39.543][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:39.565][D][ratgdo_secplus2:450]: [86389] Encode for transmit rolling=00004ae fixed=020064d539 data=01000380
[12:46:39.565][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A6 1B 6D 3E 03 4D 36 97 98 07 81 FD 67 72 01 2D]
[12:46:39.590][W][ratgdo.number:093]: Updating Rolling code counter to 1199.000000
[12:46:39.602][D][number:012]: 'Rolling code counter': Sending state 1199.000000
[12:46:40.895][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:40.922][D][ratgdo_secplus2:450]: [87741] Encode for transmit rolling=00004af fixed=020064d539 data=01010380
[12:46:40.922][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 2C 96 53 B5 96 5B 2A 89 15 43 D8 47 E0 14 0B]
[12:46:40.933][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:41.091][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:41.107][D][ratgdo_secplus2:450]: [87930] Encode for transmit rolling=00004af fixed=020064d539 data=01000380
[12:46:41.107][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 2C 96 53 B5 96 5B 28 89 15 43 D8 47 E0 04 0B]
[12:46:41.136][W][ratgdo.number:093]: Updating Rolling code counter to 1200.000000
[12:46:41.162][D][number:012]: 'Rolling code counter': Sending state 1200.000000
[12:46:41.374][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:42.446][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:42.474][D][ratgdo_secplus2:450]: [89289] Encode for transmit rolling=00004b0 fixed=020064d539 data=01010380
[12:46:42.474][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 14 1F 7F FB B7 FF BE FC 68 27 11 FC 67 E0 51 2D]
[12:46:42.493][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:42.666][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:42.718][D][ratgdo_secplus2:450]: [89479] Encode for transmit rolling=00004b0 fixed=020064d539 data=01000380
[12:46:42.718][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 14 1F 7F FB B7 FF BE FD 68 27 11 FC 67 E0 41 2D]
[12:46:42.718][W][ratgdo.number:093]: Updating Rolling code counter to 1201.000000
[12:46:42.718][D][number:012]: 'Rolling code counter': Sending state 1201.000000
[12:46:44.000][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:44.238][D][ratgdo_secplus2:450]: [90834] Encode for transmit rolling=00004b1 fixed=020064d539 data=01010380
[12:46:44.238][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 12 0D 34 96 01 24 D2 6A 59 07 03 EA 87 C4 32 13]
[12:46:44.238][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:44.396][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:44.396][D][ratgdo_secplus2:450]: [91021] Encode for transmit rolling=00004b1 fixed=020064d539 data=01000380
[12:46:44.396][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 12 0D 34 96 01 24 D2 6B 59 07 03 EA 87 C4 12 13]
[12:46:44.396][W][ratgdo.number:093]: Updating Rolling code counter to 1202.000000
[12:46:44.396][D][number:012]: 'Rolling code counter': Sending state 1202.000000
[12:46:45.537][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:45.562][D][ratgdo_secplus2:450]: [92379] Encode for transmit rolling=00004b2 fixed=020064d539 data=01010380
[12:46:45.562][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 69 00 10 4A 94 12 08 07 08 31 99 9E 21 32 0D 00]
[12:46:45.575][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:45.811][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:45.816][D][ratgdo_secplus2:450]: [92570] Encode for transmit rolling=00004b2 fixed=020064d539 data=01000380
[12:46:45.816][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 69 00 10 4A 94 12 08 05 08 31 99 9E 21 32 4D 00]
[12:46:45.816][W][ratgdo.number:093]: Updating Rolling code counter to 1203.000000
[12:46:45.816][D][number:012]: 'Rolling code counter': Sending state 1203.000000
[12:46:46.378][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:47.097][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:47.118][D][ratgdo_secplus2:450]: [93922] Encode for transmit rolling=00004b3 fixed=020064d539 data=01010380
[12:46:47.118][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 04 92 0A B0 80 41 27 A9 0E 23 E7 07 E0 C2 25]
[12:46:47.118][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:47.270][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:47.383][D][ratgdo_secplus2:450]: [94111] Encode for transmit rolling=00004b3 fixed=020064d539 data=01000380
[12:46:47.383][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 04 92 0A B0 80 41 25 A9 0E 23 E7 07 E0 82 25]
[12:46:47.498][W][ratgdo.number:093]: Updating Rolling code counter to 1204.000000
[12:46:47.498][D][number:012]: 'Rolling code counter': Sending state 1204.000000
[12:46:48.634][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:48.651][D][ratgdo_secplus2:450]: [95465] Encode for transmit rolling=00004b4 fixed=020064d539 data=01010380
[12:46:48.651][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 46 1B 6D B1 F9 65 B6 4E 98 27 91 F5 67 72 11 2D]
[12:46:48.659][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:48.829][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:48.844][D][ratgdo_secplus2:450]: [95656] Encode for transmit rolling=00004b4 fixed=020064d539 data=01000380
[12:46:48.844][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 46 1B 6D B1 F9 65 B6 4A 98 27 91 F5 67 72 01 2D]
[12:46:48.867][W][ratgdo.number:093]: Updating Rolling code counter to 1205.000000
[12:46:48.867][D][number:012]: 'Rolling code counter': Sending state 1205.000000
[12:46:50.168][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:50.188][D][ratgdo_secplus2:450]: [97008] Encode for transmit rolling=00004b5 fixed=020064d539 data=01010380
[12:46:50.188][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 45 2F F6 DC 4F BE DB EA 89 05 0B DC 47 E0 14 0B]
[12:46:50.202][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:50.373][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:50.386][D][ratgdo_secplus2:450]: [97198] Encode for transmit rolling=00004b5 fixed=020064d539 data=01000380
[12:46:50.386][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 45 2F F6 DC 4F BE DB EE 89 05 0B DC 47 E0 04 0B]
[12:46:50.403][W][ratgdo.number:093]: Updating Rolling code counter to 1206.000000
[12:46:50.418][D][number:012]: 'Rolling code counter': Sending state 1206.000000
[12:46:51.432][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:51.739][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:51.757][D][ratgdo_secplus2:450]: [98552] Encode for transmit rolling=00004b6 fixed=020064d539 data=01010380
[12:46:51.757][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A0 36 FB E5 6E FB ED B0 28 23 B1 AE 22 52 8B 00]
[12:46:51.757][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:52.103][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:52.132][D][ratgdo_secplus2:450]: [98742] Encode for transmit rolling=00004b6 fixed=020064d539 data=01000380
[12:46:52.132][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A0 36 FB E5 6E FB ED B2 28 23 B1 AE 22 52 CB 00]
[12:46:52.132][W][ratgdo.number:093]: Updating Rolling code counter to 1207.000000
[12:46:52.132][D][number:012]: 'Rolling code counter': Sending state 1207.000000
[12:46:53.283][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:53.331][D][ratgdo_secplus2:450]: [100099] Encode for transmit rolling=00004b7 fixed=020064d539 data=01010380
[12:46:53.331][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 9A 0D A4 D8 DD 36 93 4E 19 23 03 BA 87 60 68 16]
[12:46:53.331][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:53.443][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:53.570][D][ratgdo_secplus2:450]: [100286] Encode for transmit rolling=00004b7 fixed=020064d539 data=01000380
[12:46:53.570][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 9A 0D A4 D8 DD 36 93 4C 19 23 03 BA 87 60 48 16]
[12:46:53.570][W][ratgdo.number:093]: Updating Rolling code counter to 1208.000000
[12:46:53.570][D][number:012]: 'Rolling code counter': Sending state 1208.000000
[12:46:54.796][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:54.807][D][ratgdo_secplus2:450]: [101639] Encode for transmit rolling=00004b8 fixed=020064d539 data=01010380
[12:46:54.807][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 25 2C B2 D3 BD B6 5B 2A 88 31 90 B1 61 72 5D 2D]
[12:46:54.835][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:54.987][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:54.999][D][ratgdo_secplus2:450]: [101830] Encode for transmit rolling=00004b8 fixed=020064d539 data=01000380
[12:46:55.000][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 25 2C B2 D3 BD B6 5B 28 88 31 90 B1 61 72 4D 2D]
[12:46:55.036][W][ratgdo.number:093]: Updating Rolling code counter to 1209.000000
[12:46:55.044][D][number:012]: 'Rolling code counter': Sending state 1209.000000
[12:46:56.341][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:56.364][D][ratgdo_secplus2:450]: [103184] Encode for transmit rolling=00004b9 fixed=020064d539 data=01010380
[12:46:56.364][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 24 3F FF F7 2F FF 7F B9 69 23 11 F5 47 72 18 0D]
[12:46:56.377][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:56.398][D][esp8266.preferences:238]: Saving preferences to flash...
[12:46:56.534][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:56.566][D][ratgdo_secplus2:450]: [103376] Encode for transmit rolling=00004b9 fixed=020064d539 data=01000380
[12:46:56.566][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 24 3F FF F7 2F FF 7F BB 69 23 11 F5 47 72 08 0D]
[12:46:56.583][W][ratgdo.number:093]: Updating Rolling code counter to 1210.000000
[12:46:56.583][D][number:012]: 'Rolling code counter': Sending state 1210.000000
[12:46:57.884][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:57.895][D][ratgdo_secplus2:450]: [104727] Encode for transmit rolling=00004ba fixed=020064d539 data=01010380
[12:46:57.895][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 8A 3D B7 D8 5D F6 DF 78 18 27 13 BB A7 F2 21 36]
[12:46:57.918][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:58.075][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:58.086][D][ratgdo_secplus2:450]: [104918] Encode for transmit rolling=00004ba fixed=020064d539 data=01000380
[12:46:58.086][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 8A 3D B7 D8 5D F6 DF 7C 18 27 13 BB A7 F2 01 36]
[12:46:58.123][W][ratgdo.number:093]: Updating Rolling code counter to 1211.000000
[12:46:58.138][D][number:012]: 'Rolling code counter': Sending state 1211.000000
[12:46:59.445][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:46:59.467][D][ratgdo_secplus2:450]: [106270] Encode for transmit rolling=00004bb fixed=020064d539 data=01010380
[12:46:59.467][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 89 00 41 03 30 40 04 07 09 07 02 F3 87 A0 44 26]
[12:46:59.467][D][ratgdo:508]: Ensure door command, setup door command retry
[12:46:59.639][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:46:59.672][D][ratgdo_secplus2:450]: [106458] Encode for transmit rolling=00004bb fixed=020064d539 data=01000380
[12:46:59.672][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 89 00 41 03 30 40 04 03 09 07 02 F3 87 A0 04 26]
[12:46:59.778][W][ratgdo.number:093]: Updating Rolling code counter to 1212.000000
[12:46:59.778][D][number:012]: 'Rolling code counter': Sending state 1212.000000
[12:47:01.017][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:01.049][D][ratgdo_secplus2:450]: [107809] Encode for transmit rolling=00004bc fixed=020064d539 data=01010380
[12:47:01.049][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 58 25 B2 5C 05 96 5B 22 A8 23 95 3C 22 72 8B 00]
[12:47:01.049][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:01.158][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:01.179][D][ratgdo_secplus2:450]: [107999] Encode for transmit rolling=00004bc fixed=020064d539 data=01000380
[12:47:01.179][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 58 25 B2 5C 05 96 5B 26 A8 23 95 3C 22 72 CB 00]
[12:47:01.212][W][ratgdo.number:093]: Updating Rolling code counter to 1213.000000
[12:47:01.232][D][number:012]: 'Rolling code counter': Sending state 1213.000000
[12:47:01.378][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:02.601][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:02.698][D][ratgdo_secplus2:450]: [109350] Encode for transmit rolling=00004bd fixed=020064d539 data=01010380
[12:47:02.698][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 56 1B 69 A3 FA 69 A6 95 99 07 81 F5 47 E0 58 0D]
[12:47:02.698][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:02.698][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:02.698][D][ratgdo_secplus2:450]: [109537] Encode for transmit rolling=00004bd fixed=020064d539 data=01000380
[12:47:02.720][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 56 1B 69 A3 FA 69 A6 91 99 07 81 F5 47 E0 48 0D]
[12:47:02.747][W][ratgdo.number:093]: Updating Rolling code counter to 1214.000000
[12:47:02.777][D][number:012]: 'Rolling code counter': Sending state 1214.000000
[12:47:04.056][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:04.161][D][ratgdo_secplus2:450]: [110892] Encode for transmit rolling=00004be fixed=020064d539 data=01010380
[12:47:04.161][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 01 02 40 28 DA 49 24 95 49 05 02 F8 47 A8 14 0B]
[12:47:04.171][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:04.245][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:04.307][D][ratgdo_secplus2:450]: [111081] Encode for transmit rolling=00004be fixed=020064d539 data=01000380
[12:47:04.307][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 01 02 40 28 DA 49 24 94 49 05 02 F8 47 A8 04 0B]
[12:47:04.313][W][ratgdo.number:093]: Updating Rolling code counter to 1215.000000
[12:47:04.313][D][number:012]: 'Rolling code counter': Sending state 1215.000000
[12:47:05.620][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:05.637][D][ratgdo_secplus2:450]: [112434] Encode for transmit rolling=00004bf fixed=020064d539 data=01010380
[12:47:05.637][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 00 34 DA 61 FE DB 6D B3 2A 2B B1 AE 23 76 19 41]
[12:47:05.637][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:05.781][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:05.796][D][ratgdo_secplus2:450]: [112622] Encode for transmit rolling=00004bf fixed=020064d539 data=01000380
[12:47:05.796][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 00 34 DA 61 FE DB 6D B2 2A 2B B1 AE 23 76 59 41]
[12:47:05.833][W][ratgdo.number:093]: Updating Rolling code counter to 1216.000000
[12:47:05.844][D][number:012]: 'Rolling code counter': Sending state 1216.000000
[12:47:06.384][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:07.131][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:07.154][D][ratgdo_secplus2:450]: [113973] Encode for transmit rolling=00004c0 fixed=020064d539 data=01010380
[12:47:07.154][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 2D B2 C3 BD B6 59 63 4A 28 B5 03 28 1E CF 74]
[12:47:07.172][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:07.325][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:07.341][D][ratgdo_secplus2:450]: [114163] Encode for transmit rolling=00004c0 fixed=020064d539 data=01000380
[12:47:07.341][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 2D B2 C3 BD B6 59 61 4A 28 B5 03 28 1E DF 74]
[12:47:07.373][W][ratgdo.number:093]: Updating Rolling code counter to 1217.000000
[12:47:07.381][D][number:012]: 'Rolling code counter': Sending state 1217.000000
[12:47:08.707][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:08.730][D][ratgdo_secplus2:450]: [115517] Encode for transmit rolling=00004c1 fixed=020064d539 data=01010380
[12:47:08.730][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 29 08 00 18 D0 00 82 07 40 33 D0 B5 F1 73 7D BF]
[12:47:08.731][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:08.883][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:08.928][D][ratgdo_secplus2:450]: [115705] Encode for transmit rolling=00004c1 fixed=020064d539 data=01000380
[12:47:08.928][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 29 08 00 18 D0 00 82 05 40 33 D0 B5 F1 73 6D BF]
[12:47:08.934][W][ratgdo.number:093]: Updating Rolling code counter to 1218.000000
[12:47:08.934][D][number:012]: 'Rolling code counter': Sending state 1218.000000
[12:47:10.278][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:10.288][D][ratgdo_secplus2:450]: [117056] Encode for transmit rolling=00004c2 fixed=020064d539 data=01010380
[12:47:10.288][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3B FD F5 6B 7F BE FC 9A 2A 35 6F 2E 56 83 44]
[12:47:10.288][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:10.455][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:10.459][D][ratgdo_secplus2:450]: [117244] Encode for transmit rolling=00004c2 fixed=020064d539 data=01000380
[12:47:10.459][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3B FD F5 6B 7F BE FE 9A 2A 35 6F 2E 56 93 44]
[12:47:10.460][W][ratgdo.number:093]: Updating Rolling code counter to 1219.000000
[12:47:10.460][D][number:012]: 'Rolling code counter': Sending state 1219.000000
[12:47:11.528][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:11.779][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:12.028][D][ratgdo_secplus2:450]: [118601] Encode for transmit rolling=00004c3 fixed=020064d539 data=01010380
[12:47:12.028][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 92 29 A6 98 DD A4 D2 6A 90 15 D8 D9 F1 3B 3D BF]
[12:47:12.028][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:12.040][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:12.040][D][ratgdo_secplus2:450]: [118790] Encode for transmit rolling=00004c3 fixed=020064d539 data=01000380
[12:47:12.040][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 92 29 A6 98 DD A4 D2 68 90 15 D8 D9 F1 3B 2D BF]
[12:47:12.040][W][ratgdo.number:093]: Updating Rolling code counter to 1220.000000
[12:47:12.040][D][number:012]: 'Rolling code counter': Sending state 1220.000000
[12:47:13.309][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:13.360][D][ratgdo_secplus2:450]: [120144] Encode for transmit rolling=00004c4 fixed=020064d539 data=01010380
[12:47:13.360][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 12 CB 26 02 5B 24 95 6A 0E A5 6F 2E C4 C3 44]
[12:47:13.360][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:13.600][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:13.746][D][ratgdo_secplus2:450]: [120335] Encode for transmit rolling=00004c4 fixed=020064d539 data=01000380
[12:47:13.746][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 12 CB 26 02 5B 24 97 6A 0E A5 6F 2E C4 D3 44]
[12:47:13.746][W][ratgdo.number:093]: Updating Rolling code counter to 1221.000000
[12:47:13.746][D][number:012]: 'Rolling code counter': Sending state 1221.000000
[12:47:14.846][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:14.862][D][ratgdo_secplus2:450]: [121688] Encode for transmit rolling=00004c5 fixed=020064d539 data=01010380
[12:47:14.862][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 60 16 C9 6F 26 C9 6D B5 60 15 58 D9 F1 A9 7D BF]
[12:47:14.881][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:15.039][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:15.174][D][ratgdo_secplus2:450]: [121879] Encode for transmit rolling=00004c5 fixed=020064d539 data=01000380
[12:47:15.174][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 60 16 C9 6F 26 C9 6D B7 60 15 58 D9 F1 A9 6D BF]
[12:47:15.180][W][ratgdo.number:093]: Updating Rolling code counter to 1222.000000
[12:47:15.181][D][number:012]: 'Rolling code counter': Sending state 1222.000000
[12:47:16.381][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:16.400][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:16.414][D][ratgdo_secplus2:450]: [123242] Encode for transmit rolling=00004c6 fixed=020064d539 data=01010380
[12:47:16.414][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 06 19 2D BA 83 6D B6 4E 10 31 D8 DF 35 BB 0D A4]
[12:47:16.436][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:16.607][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:16.618][D][ratgdo_secplus2:450]: [123433] Encode for transmit rolling=00004c6 fixed=020064d539 data=01000380
[12:47:16.618][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 06 19 2D BA 83 6D B6 4F 10 31 D8 DF 35 BB 2D A4]
[12:47:16.650][W][ratgdo.number:093]: Updating Rolling code counter to 1223.000000
[12:47:16.657][D][number:012]: 'Rolling code counter': Sending state 1223.000000
[12:47:17.944][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:17.964][D][ratgdo_secplus2:450]: [124785] Encode for transmit rolling=00004c7 fixed=020064d539 data=01010380
[12:47:17.964][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 05 2D BE D7 35 B6 DB EA 01 15 42 F7 15 E9 64 B4]
[12:47:17.981][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:18.134][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:18.172][D][ratgdo_secplus2:450]: [124975] Encode for transmit rolling=00004c7 fixed=020064d539 data=01000380
[12:47:18.172][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 05 2D BE D7 35 B6 DB EB 01 15 42 F7 15 E9 24 B4]
[12:47:18.191][W][ratgdo.number:093]: Updating Rolling code counter to 1224.000000
[12:47:18.191][D][number:012]: 'Rolling code counter': Sending state 1224.000000
[12:47:19.594][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:19.606][D][ratgdo_secplus2:450]: [126329] Encode for transmit rolling=00004c8 fixed=020064d539 data=01010380
[12:47:19.606][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 3E DB 7A 96 DF 7D B0 5A 2A B1 B3 AB 72 E9 77]
[12:47:19.606][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:19.678][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:19.708][D][ratgdo_secplus2:450]: [126519] Encode for transmit rolling=00004c8 fixed=020064d539 data=01000380
[12:47:19.708][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 3E DB 7A 96 DF 7D B4 5A 2A B1 B3 AB 72 C9 77]
[12:47:19.732][W][ratgdo.number:093]: Updating Rolling code counter to 1225.000000
[12:47:19.739][D][number:012]: 'Rolling code counter': Sending state 1225.000000
[12:47:21.031][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:21.043][D][ratgdo_secplus2:450]: [127870] Encode for transmit rolling=00004c9 fixed=020064d539 data=01010380
[12:47:21.043][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 4A 2D F6 FC 4D BE DF 78 50 31 F8 07 31 1F 5D A4]
[12:47:21.113][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:21.218][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:21.231][D][ratgdo_secplus2:450]: [128059] Encode for transmit rolling=00004c9 fixed=020064d539 data=01000380
[12:47:21.231][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 4A 2D F6 FC 4D BE DF 7C 50 31 F8 07 31 1F 7D A4]
[12:47:21.268][W][ratgdo.number:093]: Updating Rolling code counter to 1226.000000
[12:47:21.279][D][number:012]: 'Rolling code counter': Sending state 1226.000000
[12:47:21.464][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:22.573][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:22.590][D][ratgdo_secplus2:450]: [129412] Encode for transmit rolling=00004ca fixed=020064d539 data=01010380
[12:47:22.590][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 2D B6 D3 F5 96 5B 2A AA 2B B5 BC 6B 56 19 41]
[12:47:22.609][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:22.764][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:22.797][D][ratgdo_secplus2:450]: [129603] Encode for transmit rolling=00004ca fixed=020064d539 data=01000380
[12:47:22.797][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 2D B6 D3 F5 96 5B 28 AA 2B B5 BC 6B 56 59 41]
[12:47:22.817][W][ratgdo.number:093]: Updating Rolling code counter to 1227.000000
[12:47:22.817][D][number:012]: 'Rolling code counter': Sending state 1227.000000
[12:47:24.114][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:24.149][D][ratgdo_secplus2:450]: [130954] Encode for transmit rolling=00004cb fixed=020064d539 data=01010380
[12:47:24.149][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A4 3E DF F7 67 DF 7F B9 A0 30 DC 0A B1 3B AD 92]
[12:47:24.177][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:24.302][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:24.326][D][ratgdo_secplus2:450]: [131144] Encode for transmit rolling=00004cb fixed=020064d539 data=01000380
[12:47:24.326][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A4 3E DF F7 67 DF 7F BB A0 30 DC 0A B1 3B ED 92]
[12:47:24.355][W][ratgdo.number:093]: Updating Rolling code counter to 1228.000000
[12:47:24.373][D][number:012]: 'Rolling code counter': Sending state 1228.000000
[12:47:25.741][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:25.830][D][ratgdo_secplus2:450]: [132498] Encode for transmit rolling=00004cc fixed=020064d539 data=01010380
[12:47:25.830][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 19 2D 91 EB 64 92 5C 8A 28 F4 03 A8 56 CF 74]
[12:47:25.830][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:25.867][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:25.867][D][ratgdo_secplus2:450]: [132685] Encode for transmit rolling=00004cc fixed=020064d539 data=01000380
[12:47:25.908][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 19 2D 91 EB 64 92 58 8A 28 F4 03 A8 56 DF 74]
[12:47:25.929][W][ratgdo.number:093]: Updating Rolling code counter to 1229.000000
[12:47:25.929][D][number:012]: 'Rolling code counter': Sending state 1229.000000
[12:47:26.381][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:27.232][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:27.246][D][ratgdo_secplus2:450]: [134037] Encode for transmit rolling=00004cd fixed=020064d539 data=01010380
[12:47:27.246][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 81 10 48 27 30 09 24 95 80 31 D9 B1 F1 3B 7D BF]
[12:47:27.246][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:27.388][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:27.398][D][ratgdo_secplus2:450]: [134225] Encode for transmit rolling=00004cd fixed=020064d539 data=01000380
[12:47:27.398][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 81 10 48 27 30 09 24 91 80 31 D9 B1 F1 3B 6D BF]
[12:47:27.432][W][ratgdo.number:093]: Updating Rolling code counter to 1230.000000
[12:47:27.450][D][number:012]: 'Rolling code counter': Sending state 1230.000000
[12:47:28.804][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:28.815][D][ratgdo_secplus2:450]: [135578] Encode for transmit rolling=00004ce fixed=020064d539 data=01010380
[12:47:28.815][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 18 24 82 0D 4C 92 01 27 20 38 DC 0A B0 1B AD 92]
[12:47:28.815][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:28.928][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:28.945][D][ratgdo_secplus2:450]: [135769] Encode for transmit rolling=00004ce fixed=020064d539 data=01000380
[12:47:28.945][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 18 24 82 0D 4C 92 01 26 20 38 DC 0A B0 1B ED 92]
[12:47:28.977][W][ratgdo.number:093]: Updating Rolling code counter to 1231.000000
[12:47:28.983][D][number:012]: 'Rolling code counter': Sending state 1231.000000
[12:47:30.284][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:30.378][D][ratgdo_secplus2:450]: [137120] Encode for transmit rolling=00004cf fixed=020064d539 data=01010380
[12:47:30.379][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 16 3B 6D F2 B3 6D F7 F8 11 31 C8 9E 15 29 44 84]
[12:47:30.389][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:30.472][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:30.481][D][ratgdo_secplus2:450]: [137310] Encode for transmit rolling=00004cf fixed=020064d539 data=01000380
[12:47:30.482][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 16 3B 6D F2 B3 6D F7 F9 11 31 C8 9E 15 29 64 84]
[12:47:30.519][W][ratgdo.number:093]: Updating Rolling code counter to 1232.000000
[12:47:30.525][D][number:012]: 'Rolling code counter': Sending state 1232.000000
[12:47:31.426][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:31.952][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:31.968][D][ratgdo_secplus2:450]: [138661] Encode for transmit rolling=00004d0 fixed=020064d539 data=01010380
[12:47:31.968][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 45 3D F6 F8 CD BE DB EA AA 2B 95 AE 6B 56 19 41]
[12:47:31.968][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:32.018][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:32.035][D][ratgdo_secplus2:450]: [138850] Encode for transmit rolling=00004d0 fixed=020064d539 data=01000380
[12:47:32.035][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 45 3D F6 F8 CD BE DB EE AA 2B 95 AE 6B 56 59 41]
[12:47:32.066][W][ratgdo.number:093]: Updating Rolling code counter to 1233.000000
[12:47:32.066][D][number:012]: 'Rolling code counter': Sending state 1233.000000
[12:47:33.362][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:33.394][D][ratgdo_secplus2:450]: [140202] Encode for transmit rolling=00004d1 fixed=020064d539 data=01010380
[12:47:33.394][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 44 3D F7 DC 5F F7 FF 7A A0 31 D8 18 F1 3B AD 92]
[12:47:33.411][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:33.551][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:33.566][D][ratgdo_secplus2:450]: [140391] Encode for transmit rolling=00004d1 fixed=020064d539 data=01000380
[12:47:33.567][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 44 3D F7 DC 5F F7 FF 7E A0 31 D8 18 F1 3B ED 92]
[12:47:33.601][W][ratgdo.number:093]: Updating Rolling code counter to 1234.000000
[12:47:33.601][D][number:012]: 'Rolling code counter': Sending state 1234.000000
[12:47:34.903][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:34.927][D][ratgdo_secplus2:450]: [141744] Encode for transmit rolling=00004d2 fixed=020064d539 data=01010380
[12:47:34.927][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 9A 2D 36 D9 F9 36 93 4E 4A 38 BC 23 A8 1E CF 74]
[12:47:34.940][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:35.098][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:35.122][D][ratgdo_secplus2:450]: [141936] Encode for transmit rolling=00004d2 fixed=020064d539 data=01000380
[12:47:35.122][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 9A 2D 36 D9 F9 36 93 4C 4A 38 BC 23 A8 1E DF 74]
[12:47:35.143][W][ratgdo.number:093]: Updating Rolling code counter to 1235.000000
[12:47:35.150][D][number:012]: 'Rolling code counter': Sending state 1235.000000
[12:47:36.385][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:37.001][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:37.001][D][ratgdo_secplus2:450]: [143291] Encode for transmit rolling=00004d3 fixed=020064d539 data=01010380
[12:47:37.001][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 99 20 10 02 94 80 48 07 40 23 99 95 71 73 7D BF]
[12:47:37.001][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:37.001][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:37.001][D][ratgdo_secplus2:450]: [143478] Encode for transmit rolling=00004d3 fixed=020064d539 data=01000380
[12:47:37.001][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 99 20 10 02 94 80 48 05 40 23 99 95 71 73 6D BF]
[12:47:37.001][W][ratgdo.number:093]: Updating Rolling code counter to 1236.000000
[12:47:37.001][D][number:012]: 'Rolling code counter': Sending state 1236.000000
[12:47:37.993][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:38.026][D][ratgdo_secplus2:450]: [144832] Encode for transmit rolling=00004d4 fixed=020064d539 data=01010380
[12:47:38.026][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 24 90 4A B0 80 41 27 1A 2E B7 28 EE D6 B3 5F]
[12:47:38.026][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:38.244][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:38.253][D][ratgdo_secplus2:450]: [145022] Encode for transmit rolling=00004d4 fixed=020064d539 data=01000380
[12:47:38.253][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 24 90 4A B0 80 41 25 1A 2E B7 28 EE D6 93 5F]
[12:47:38.253][W][ratgdo.number:093]: Updating Rolling code counter to 1237.000000
[12:47:38.253][D][number:012]: 'Rolling code counter': Sending state 1237.000000
[12:47:39.532][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:39.553][D][ratgdo_secplus2:450]: [146373] Encode for transmit rolling=00004d5 fixed=020064d539 data=01010380
[12:47:39.553][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 66 1F EF B5 4F 7F B7 F8 10 35 CA 9E 31 BB 0D A4]
[12:47:39.572][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:39.726][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:39.840][D][ratgdo_secplus2:450]: [146563] Encode for transmit rolling=00004d5 fixed=020064d539 data=01000380
[12:47:39.840][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 66 1F EF B5 4F 7F B7 FA 10 35 CA 9E 31 BB 2D A4]
[12:47:39.840][W][ratgdo.number:093]: Updating Rolling code counter to 1238.000000
[12:47:39.840][D][number:012]: 'Rolling code counter': Sending state 1238.000000
[12:47:41.082][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:41.111][D][ratgdo_secplus2:450]: [147916] Encode for transmit rolling=00004d6 fixed=020064d539 data=01010380
[12:47:41.111][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 11 16 49 28 FA 49 64 95 80 31 99 95 73 3B 7D BF]
[12:47:41.121][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:41.270][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:41.277][D][ratgdo_secplus2:450]: [148105] Encode for transmit rolling=00004d6 fixed=020064d539 data=01000380
[12:47:41.277][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 11 16 49 28 FA 49 64 94 80 31 99 95 73 3B 6D BF]
[12:47:41.389][W][ratgdo.number:093]: Updating Rolling code counter to 1239.000000
[12:47:41.395][D][number:012]: 'Rolling code counter': Sending state 1239.000000
[12:47:41.395][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:42.618][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:42.645][D][ratgdo_secplus2:450]: [149460] Encode for transmit rolling=00004d7 fixed=020064d539 data=01010380
[12:47:42.645][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 10 16 5B 61 DE DB 2D B5 61 31 48 D1 D5 3B 34 9F]
[12:47:42.655][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:42.817][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:42.978][D][ratgdo_secplus2:450]: [149650] Encode for transmit rolling=00004d7 fixed=020064d539 data=01000380
[12:47:42.978][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 10 16 5B 61 DE DB 2D B4 61 31 48 D1 D5 3B 24 9F]
[12:47:42.978][W][ratgdo.number:093]: Updating Rolling code counter to 1240.000000
[12:47:42.978][D][number:012]: 'Rolling code counter': Sending state 1240.000000
[12:47:44.212][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:44.533][D][ratgdo_secplus2:450]: [151003] Encode for transmit rolling=00004d8 fixed=020064d539 data=01010380
[12:47:44.533][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 56 1A 69 33 FB 69 A6 95 0A 2A F5 0C 68 16 9F 59]
[12:47:44.533][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:44.569][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:44.569][D][ratgdo_secplus2:450]: [151190] Encode for transmit rolling=00004d8 fixed=020064d539 data=01000380
[12:47:44.569][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 56 1A 69 33 FB 69 A6 91 0A 2A F5 0C 68 16 DF 59]
[12:47:44.569][W][ratgdo.number:093]: Updating Rolling code counter to 1241.000000
[12:47:44.569][D][number:012]: 'Rolling code counter': Sending state 1241.000000
[12:47:45.701][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:45.736][D][ratgdo_secplus2:450]: [152542] Encode for transmit rolling=00004d9 fixed=020064d539 data=01010380
[12:47:45.736][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 55 2D B6 5E 4D B2 CB 2A 00 23 D1 BE B1 7B 2D 92]
[12:47:45.756][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:45.890][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:45.920][D][ratgdo_secplus2:450]: [152731] Encode for transmit rolling=00004d9 fixed=020064d539 data=01000380
[12:47:45.920][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 55 2D B6 5E 4D B2 CB 2E 00 23 D1 BE B1 7B 6D 92]
[12:47:45.940][W][ratgdo.number:093]: Updating Rolling code counter to 1242.000000
[12:47:45.956][D][number:012]: 'Rolling code counter': Sending state 1242.000000
[12:47:46.390][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:47.346][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:47.360][D][ratgdo_secplus2:450]: [154084] Encode for transmit rolling=00004da fixed=020064d539 data=01010380
[12:47:47.360][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 00 26 D3 65 6E DB 6D B3 60 35 C8 D1 F5 A9 7D BF]
[12:47:47.360][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:47.432][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:47.456][D][ratgdo_secplus2:450]: [154272] Encode for transmit rolling=00004da fixed=020064d539 data=01000380
[12:47:47.456][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 00 26 D3 65 6E DB 6D B2 60 35 C8 D1 F5 A9 6D BF]
[12:47:47.489][W][ratgdo.number:093]: Updating Rolling code counter to 1243.000000
[12:47:47.678][D][number:012]: 'Rolling code counter': Sending state 1243.000000
[12:47:48.791][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:48.810][D][ratgdo_secplus2:450]: [155626] Encode for transmit rolling=00004db fixed=020064d539 data=01010380
[12:47:48.810][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 2C B6 D3 B5 96 59 63 50 31 D8 05 31 1F 5D A4]
[12:47:48.829][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:48.984][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:48.997][D][ratgdo_secplus2:450]: [155816] Encode for transmit rolling=00004db fixed=020064d539 data=01000380
[12:47:48.997][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 2C B6 D3 B5 96 59 61 50 31 D8 05 31 1F 7D A4]
[12:47:49.033][W][ratgdo.number:093]: Updating Rolling code counter to 1244.000000
[12:47:49.056][D][number:012]: 'Rolling code counter': Sending state 1244.000000
[12:47:50.327][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:50.343][D][ratgdo_secplus2:450]: [157168] Encode for transmit rolling=00004dc fixed=020064d539 data=01010380
[12:47:50.343][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 89 02 41 07 22 40 04 07 2A 2A B5 3C 6B 76 19 41]
[12:47:50.364][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:50.521][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:50.541][D][ratgdo_secplus2:450]: [157359] Encode for transmit rolling=00004dc fixed=020064d539 data=01000380
[12:47:50.541][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 89 02 41 07 22 40 04 03 2A 2A B5 3C 6B 76 59 41]
[12:47:50.570][W][ratgdo.number:093]: Updating Rolling code counter to 1245.000000
[12:47:50.598][D][number:012]: 'Rolling code counter': Sending state 1245.000000
[12:47:51.386][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:51.884][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:51.919][D][ratgdo_secplus2:450]: [158711] Encode for transmit rolling=00004dd fixed=020064d539 data=01010380
[12:47:51.919][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 88 24 9B 4E 06 D2 4D 21 20 31 F8 08 B1 1B AD 92]
[12:47:51.919][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:52.062][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:52.081][D][ratgdo_secplus2:450]: [158899] Encode for transmit rolling=00004dd fixed=020064d539 data=01000380
[12:47:52.081][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 88 24 9B 4E 06 D2 4D 25 20 31 F8 08 B1 1B ED 92]
[12:47:52.116][W][ratgdo.number:093]: Updating Rolling code counter to 1246.000000
[12:47:52.130][D][number:012]: 'Rolling code counter': Sending state 1246.000000
[12:47:53.446][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:53.467][D][ratgdo_secplus2:450]: [160252] Encode for transmit rolling=00004de fixed=020064d539 data=01010380
[12:47:53.467][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 22 01 04 8A D1 24 12 47 90 15 58 D1 F5 3B 3D BF]
[12:47:53.467][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:53.601][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:53.617][D][ratgdo_secplus2:450]: [160441] Encode for transmit rolling=00004de fixed=020064d539 data=01000380
[12:47:53.617][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 22 01 04 8A D1 24 12 45 90 15 58 D1 F5 3B 2D BF]
[12:47:53.651][W][ratgdo.number:093]: Updating Rolling code counter to 1247.000000
[12:47:53.660][D][number:012]: 'Rolling code counter': Sending state 1247.000000
[12:47:55.023][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:55.038][D][ratgdo_secplus2:450]: [161792] Encode for transmit rolling=00004df fixed=020064d539 data=01010380
[12:47:55.039][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 13 4D 3C 02 49 A4 95 81 17 43 FC C7 A9 34 99]
[12:47:55.039][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:55.141][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:55.153][D][ratgdo_secplus2:450]: [161980] Encode for transmit rolling=00004df fixed=020064d539 data=01000380
[12:47:55.153][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 13 4D 3C 02 49 A4 97 81 17 43 FC C7 A9 24 99]
[12:47:55.193][W][ratgdo.number:093]: Updating Rolling code counter to 1248.000000
[12:47:55.203][D][number:012]: 'Rolling code counter': Sending state 1248.000000
[12:47:56.382][D][esp8266.preferences:238]: Saving preferences to flash...
[12:47:56.490][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:56.594][D][ratgdo_secplus2:450]: [163331] Encode for transmit rolling=00004e0 fixed=020064d539 data=01010380
[12:47:56.594][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 98 24 92 0A B4 12 01 27 84 3A F5 03 BA 1F EF 76]
[12:47:56.612][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:56.686][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:56.702][D][ratgdo_secplus2:450]: [163520] Encode for transmit rolling=00004e0 fixed=020064d539 data=01000380
[12:47:56.702][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 98 24 92 0A B4 12 01 25 84 3A F5 03 BA 1F FF 76]
[12:47:56.733][W][ratgdo.number:093]: Updating Rolling code counter to 1249.000000
[12:47:56.744][D][number:012]: 'Rolling code counter': Sending state 1249.000000
[12:47:58.035][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:58.044][D][ratgdo_secplus2:450]: [164873] Encode for transmit rolling=00004e1 fixed=020064d539 data=01010380
[12:47:58.044][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 96 1F ED F5 4B ED F7 F8 65 2E 37 27 2A C4 CA 60]
[12:47:58.165][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:58.225][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:58.246][D][ratgdo_secplus2:450]: [165063] Encode for transmit rolling=00004e1 fixed=020064d539 data=01000380
[12:47:58.246][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 96 1F ED F5 4B ED F7 FA 65 2E 37 27 2A C4 DA 60]
[12:47:58.271][W][ratgdo.number:093]: Updating Rolling code counter to 1250.000000
[12:47:58.287][D][number:012]: 'Rolling code counter': Sending state 1250.000000
[12:47:59.634][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:47:59.645][D][ratgdo_secplus2:450]: [166416] Encode for transmit rolling=00004e2 fixed=020064d539 data=01010380
[12:47:59.645][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 10 49 27 B0 41 24 95 15 0E B7 21 EE D6 BA 7B]
[12:47:59.645][D][ratgdo:508]: Ensure door command, setup door command retry
[12:47:59.769][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:47:59.804][D][ratgdo_secplus2:450]: [166605] Encode for transmit rolling=00004e2 fixed=020064d539 data=01000380
[12:47:59.804][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 10 49 27 B0 41 24 91 15 0E B7 21 EE D6 9A 7B]
[12:47:59.829][W][ratgdo.number:093]: Updating Rolling code counter to 1251.000000
[12:47:59.830][D][number:012]: 'Rolling code counter': Sending state 1251.000000
[12:48:01.376][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:01.393][D][ratgdo_secplus2:450]: [167957] Encode for transmit rolling=00004e3 fixed=020064d539 data=01010380
[12:48:01.393][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 40 26 9B 6E 94 D3 6D B3 06 0E 67 41 DC CD F6 6F]
[12:48:01.393][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:01.393][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:01.393][D][ratgdo_secplus2:450]: [168148] Encode for transmit rolling=00004e3 fixed=020064d539 data=01000380
[12:48:01.393][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 40 26 9B 6E 94 D3 6D B7 06 0E 67 41 DC CD B6 6F]
[12:48:01.393][W][ratgdo.number:093]: Updating Rolling code counter to 1252.000000
[12:48:01.393][D][number:012]: 'Rolling code counter': Sending state 1252.000000
[12:48:01.393][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:02.706][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:02.716][D][ratgdo_secplus2:450]: [169500] Encode for transmit rolling=00004e4 fixed=020064d539 data=01010380
[12:48:02.716][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 0A 2D BF D3 25 B6 DF 78 A5 23 95 AC 6B 56 1B 08]
[12:48:02.716][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:02.883][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:03.029][D][ratgdo_secplus2:450]: [169690] Encode for transmit rolling=00004e4 fixed=020064d539 data=01000380
[12:48:03.029][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 0A 2D BF D3 25 B6 DF 79 A5 23 95 AC 6B 56 5B 08]
[12:48:03.029][W][ratgdo.number:093]: Updating Rolling code counter to 1253.000000
[12:48:03.029][D][number:012]: 'Rolling code counter': Sending state 1253.000000
[12:48:04.209][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:04.218][D][ratgdo_secplus2:450]: [171045] Encode for transmit rolling=00004e5 fixed=020064d539 data=01010380
[12:48:04.219][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 09 10 01 08 4A 00 04 07 96 18 6C 4A 9C 8D E7 F2]
[12:48:04.239][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:04.458][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:04.466][D][ratgdo_secplus2:450]: [171236] Encode for transmit rolling=00004e5 fixed=020064d539 data=01000380
[12:48:04.466][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 09 10 01 08 4A 00 04 06 96 18 6C 4A 9C 8D F7 F2]
[12:48:04.466][W][ratgdo.number:093]: Updating Rolling code counter to 1254.000000
[12:48:04.466][D][number:012]: 'Rolling code counter': Sending state 1254.000000
[12:48:05.748][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:05.762][D][ratgdo_secplus2:450]: [172589] Encode for transmit rolling=00004e6 fixed=020064d539 data=01010380
[12:48:05.762][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 64 3B EF F5 4F ED FE FC 45 2A BC 27 28 1E CB E6]
[12:48:05.786][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:05.941][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:06.116][D][ratgdo_secplus2:450]: [172779] Encode for transmit rolling=00004e6 fixed=020064d539 data=01000380
[12:48:06.116][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 64 3B EF F5 4F ED FE FE 45 2A BC 27 28 1E DB E6]
[12:48:06.116][W][ratgdo.number:093]: Updating Rolling code counter to 1255.000000
[12:48:06.116][D][number:012]: 'Rolling code counter': Sending state 1255.000000
[12:48:06.381][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:07.294][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:07.330][D][ratgdo_secplus2:450]: [174133] Encode for transmit rolling=00004e7 fixed=020064d539 data=01010380
[12:48:07.330][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 09 24 98 F9 36 92 6A 26 1C 4E 53 DC AD 76 B7]
[12:48:07.341][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:07.483][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:07.605][D][ratgdo_secplus2:450]: [174323] Encode for transmit rolling=00004e7 fixed=020064d539 data=01000380
[12:48:07.605][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 09 24 98 F9 36 92 68 26 1C 4E 53 DC AD 36 B7]
[12:48:07.605][W][ratgdo.number:093]: Updating Rolling code counter to 1256.000000
[12:48:07.605][D][number:012]: 'Rolling code counter': Sending state 1256.000000
[12:48:08.856][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:08.985][D][ratgdo_secplus2:450]: [175680] Encode for transmit rolling=00004e8 fixed=020064d539 data=01010380
[12:48:08.985][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 01 20 1A 90 20 82 07 94 38 7E 4B BC 1F AE F6]
[12:48:08.985][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:09.045][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:09.045][D][ratgdo_secplus2:450]: [175868] Encode for transmit rolling=00004e8 fixed=020064d539 data=01000380
[12:48:09.045][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 01 20 1A 90 20 82 05 94 38 7E 4B BC 1F BE F6]
[12:48:09.081][W][ratgdo.number:093]: Updating Rolling code counter to 1257.000000
[12:48:09.179][D][number:012]: 'Rolling code counter': Sending state 1257.000000
[12:48:10.383][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:10.408][D][ratgdo_secplus2:450]: [177224] Encode for transmit rolling=00004e9 fixed=020064d539 data=01010380
[12:48:10.408][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A8 24 96 53 B4 B2 CB 22 85 38 B4 03 AA 56 CB E6]
[12:48:10.418][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:10.573][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:10.587][D][ratgdo_secplus2:450]: [177413] Encode for transmit rolling=00004e9 fixed=020064d539 data=01000380
[12:48:10.587][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A8 24 96 53 B4 B2 CB 20 85 38 B4 03 AA 56 DB E6]
[12:48:10.624][W][ratgdo.number:093]: Updating Rolling code counter to 1258.000000
[12:48:10.650][D][number:012]: 'Rolling code counter': Sending state 1258.000000
[12:48:11.387][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:11.930][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:11.956][D][ratgdo_secplus2:450]: [178771] Encode for transmit rolling=00004ea fixed=020064d539 data=01010380
[12:48:11.957][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 01 04 97 21 20 82 47 25 2B B1 BE 6B 76 1B 08]
[12:48:11.971][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:12.126][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:12.144][D][ratgdo_secplus2:450]: [178961] Encode for transmit rolling=00004ea fixed=020064d539 data=01000380
[12:48:12.144][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 01 04 97 21 20 82 43 25 2B B1 BE 6B 76 5B 08]
[12:48:12.187][W][ratgdo.number:093]: Updating Rolling code counter to 1259.000000
[12:48:12.210][D][number:012]: 'Rolling code counter': Sending state 1259.000000
[12:48:13.476][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:13.498][D][ratgdo_secplus2:450]: [180315] Encode for transmit rolling=00004eb fixed=020064d539 data=01010380
[12:48:13.498][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 13 4D 21 FA 4D 34 95 16 18 EC 05 5C 0D D7 E9]
[12:48:13.524][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:13.689][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:13.696][D][ratgdo_secplus2:450]: [180505] Encode for transmit rolling=00004eb fixed=020064d539 data=01000380
[12:48:13.696][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 13 4D 21 FA 4D 34 91 16 18 EC 05 5C 0D F7 E9]
[12:48:13.722][W][ratgdo.number:093]: Updating Rolling code counter to 1260.000000
[12:48:13.722][D][number:012]: 'Rolling code counter': Sending state 1260.000000
[12:48:15.016][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:15.029][D][ratgdo_secplus2:450]: [181857] Encode for transmit rolling=00004ec fixed=020064d539 data=01010380
[12:48:15.029][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 3E DB E7 27 DB ED B0 05 2A B4 08 68 16 9B CB]
[12:48:15.054][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:15.210][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:15.229][D][ratgdo_secplus2:450]: [182047] Encode for transmit rolling=00004ec fixed=020064d539 data=01000380
[12:48:15.229][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 3E DB E7 27 DB ED B2 05 2A B4 08 68 16 DB CB]
[12:48:15.267][W][ratgdo.number:093]: Updating Rolling code counter to 1261.000000
[12:48:15.282][D][number:012]: 'Rolling code counter': Sending state 1261.000000
[12:48:16.385][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:16.565][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:16.589][D][ratgdo_secplus2:450]: [183406] Encode for transmit rolling=00004ed fixed=020064d539 data=01010380
[12:48:16.589][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 1A 2D 34 DE 21 B6 93 4E A6 1C 6A D3 9C 8D 76 B7]
[12:48:16.602][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:16.762][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:16.779][D][ratgdo_secplus2:450]: [183595] Encode for transmit rolling=00004ed fixed=020064d539 data=01000380
[12:48:16.779][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 1A 2D 34 DE 21 B6 93 4F A6 1C 6A D3 9C 8D 36 B7]
[12:48:16.825][W][ratgdo.number:093]: Updating Rolling code counter to 1262.000000
[12:48:16.825][D][number:012]: 'Rolling code counter': Sending state 1262.000000
[12:48:18.116][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:18.143][D][ratgdo_secplus2:450]: [184949] Encode for transmit rolling=00004ee fixed=020064d539 data=01010380
[12:48:18.143][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 85 2D B6 F8 5D F6 DB EA 55 23 95 B3 AB 72 EB 3E]
[12:48:18.143][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:18.322][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:18.348][D][ratgdo_secplus2:450]: [185138] Encode for transmit rolling=00004ee fixed=020064d539 data=01000380
[12:48:18.348][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 85 2D B6 F8 5D F6 DB EE 55 23 95 B3 AB 72 CB 3E]
[12:48:18.348][W][ratgdo.number:093]: Updating Rolling code counter to 1263.000000
[12:48:18.348][D][number:012]: 'Rolling code counter': Sending state 1263.000000
[12:48:19.662][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:19.684][D][ratgdo_secplus2:450]: [186491] Encode for transmit rolling=00004ef fixed=020064d539 data=01010380
[12:48:19.684][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 3D BF DC DF BF FF 7A 46 1E 6F 6E 0E C5 A6 42]
[12:48:19.684][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:19.843][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:19.866][D][ratgdo_secplus2:450]: [186680] Encode for transmit rolling=00004ef fixed=020064d539 data=01000380
[12:48:19.866][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 3D BF DC DF BF FF 7E 46 1E 6F 6E 0E C5 B6 42]
[12:48:19.889][W][ratgdo.number:093]: Updating Rolling code counter to 1264.000000
[12:48:19.895][D][number:012]: 'Rolling code counter': Sending state 1264.000000
[12:48:21.233][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:21.241][D][ratgdo_secplus2:450]: [188032] Encode for transmit rolling=00004f0 fixed=020064d539 data=01010380
[12:48:21.241][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A2 01 20 88 D9 04 12 47 24 38 FC 98 F9 3F 3F 9B]
[12:48:21.241][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:21.404][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:21.424][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:21.424][D][ratgdo_secplus2:450]: [188240] Encode for transmit rolling=00004f0 fixed=020064d539 data=01000380
[12:48:21.424][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A2 01 20 88 D9 04 12 45 24 38 FC 98 F9 3F 7F 9B]
[12:48:21.456][W][ratgdo.number:093]: Updating Rolling code counter to 1265.000000
[12:48:21.462][D][number:012]: 'Rolling code counter': Sending state 1265.000000
[12:48:22.807][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:22.818][D][ratgdo_secplus2:450]: [189576] Encode for transmit rolling=00004f1 fixed=020064d539 data=01010380
[12:48:22.818][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A1 13 49 3E 02 69 A4 95 15 2A A7 29 EA D6 BA 7B]
[12:48:22.818][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:22.928][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:22.958][D][ratgdo_secplus2:450]: [189766] Encode for transmit rolling=00004f1 fixed=020064d539 data=01000380
[12:48:22.958][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A1 13 49 3E 02 69 A4 97 15 2A A7 29 EA D6 9A 7B]
[12:48:22.973][W][ratgdo.number:093]: Updating Rolling code counter to 1266.000000
[12:48:22.978][D][number:012]: 'Rolling code counter': Sending state 1266.000000
[12:48:24.277][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:24.380][D][ratgdo_secplus2:450]: [191118] Encode for transmit rolling=00004f2 fixed=020064d539 data=01010380
[12:48:24.380][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 48 24 9A 4A 06 9A 4D 21 85 38 F4 23 28 56 CB E6]
[12:48:24.385][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:24.479][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:24.494][D][ratgdo_secplus2:450]: [191309] Encode for transmit rolling=00004f2 fixed=020064d539 data=01000380
[12:48:24.494][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 48 24 9A 4A 06 9A 4D 25 85 38 F4 23 28 56 DB E6]
[12:48:24.548][W][ratgdo.number:093]: Updating Rolling code counter to 1267.000000
[12:48:24.559][D][number:012]: 'Rolling code counter': Sending state 1267.000000
[12:48:25.822][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:25.844][D][ratgdo_secplus2:450]: [192663] Encode for transmit rolling=00004f3 fixed=020064d539 data=01010380
[12:48:25.844][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 46 0B 6D B5 EB 65 B6 4E 66 18 6C 42 9C 1F A7 F2]
[12:48:25.863][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:26.029][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:26.111][D][ratgdo_secplus2:450]: [192853] Encode for transmit rolling=00004f3 fixed=020064d539 data=01000380
[12:48:26.111][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 46 0B 6D B5 EB 65 B6 4A 66 18 6C 42 9C 1F B7 F2]
[12:48:26.111][W][ratgdo.number:093]: Updating Rolling code counter to 1268.000000
[12:48:26.111][D][number:012]: 'Rolling code counter': Sending state 1268.000000
[12:48:26.382][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:27.364][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:27.379][D][ratgdo_secplus2:450]: [194205] Encode for transmit rolling=00004f4 fixed=020064d539 data=01010380
[12:48:27.379][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 15 0D 34 DE 21 B6 9A 6A 55 2B B1 B1 EB 72 EB 3E]
[12:48:27.399][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:27.557][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:27.569][D][ratgdo_secplus2:450]: [194396] Encode for transmit rolling=00004f4 fixed=020064d539 data=01000380
[12:48:27.569][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 15 0D 34 DE 21 B6 9A 6B 55 2B B1 B1 EB 72 CB 3E]
[12:48:27.604][W][ratgdo.number:093]: Updating Rolling code counter to 1269.000000
[12:48:27.614][D][number:012]: 'Rolling code counter': Sending state 1269.000000
[12:48:28.908][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:28.929][D][ratgdo_secplus2:450]: [195748] Encode for transmit rolling=00004f5 fixed=020064d539 data=01010380
[12:48:28.929][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 14 3B ED FA B3 FF BE FC 46 1E 2F 4E 9C C5 A6 42]
[12:48:28.946][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:29.098][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:29.110][D][ratgdo_secplus2:450]: [195939] Encode for transmit rolling=00004f5 fixed=020064d539 data=01000380
[12:48:29.111][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 14 3B ED FA B3 FF BE FD 46 1E 2F 4E 9C C5 B6 42]
[12:48:29.147][W][ratgdo.number:093]: Updating Rolling code counter to 1270.000000
[12:48:29.154][D][number:012]: 'Rolling code counter': Sending state 1270.000000
[12:48:30.457][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:30.472][D][ratgdo_secplus2:450]: [197291] Encode for transmit rolling=00004f6 fixed=020064d539 data=01010380
[12:48:30.472][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 6A 2D 36 D1 DD A4 D3 4E A5 23 B5 AE 6B 56 1B 08]
[12:48:30.485][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:30.673][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:30.678][D][ratgdo_secplus2:450]: [197481] Encode for transmit rolling=00004f6 fixed=020064d539 data=01000380
[12:48:30.678][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 6A 2D 36 D1 DD A4 D3 4C A5 23 B5 AE 6B 56 5B 08]
[12:48:30.692][W][ratgdo.number:093]: Updating Rolling code counter to 1271.000000
[12:48:30.692][D][number:012]: 'Rolling code counter': Sending state 1271.000000
[12:48:31.382][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:31.996][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:32.017][D][ratgdo_secplus2:450]: [198833] Encode for transmit rolling=00004f7 fixed=020064d539 data=01010380
[12:48:32.017][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 69 20 10 0A B0 12 08 07 96 38 7C 42 9C 8D E7 F2]
[12:48:32.028][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:32.248][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:32.312][D][ratgdo_secplus2:450]: [199024] Encode for transmit rolling=00004f7 fixed=020064d539 data=01000380
[12:48:32.312][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 69 20 10 0A B0 12 08 05 96 38 7C 42 9C 8D F7 F2]
[12:48:32.312][W][ratgdo.number:093]: Updating Rolling code counter to 1272.000000
[12:48:32.312][D][number:012]: 'Rolling code counter': Sending state 1272.000000
[12:48:33.540][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:33.558][D][ratgdo_secplus2:450]: [200375] Encode for transmit rolling=00004f8 fixed=020064d539 data=01010380
[12:48:33.558][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 04 3D FE F7 B7 FF FF 7A 45 38 B5 03 A8 1E CB E6]
[12:48:33.574][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:33.725][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:33.816][D][ratgdo_secplus2:450]: [200566] Encode for transmit rolling=00004f8 fixed=020064d539 data=01000380
[12:48:33.816][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 04 3D FE F7 B7 FF FF 7B 45 38 B5 03 A8 1E DB E6]
[12:48:33.827][W][ratgdo.number:093]: Updating Rolling code counter to 1273.000000
[12:48:33.827][D][number:012]: 'Rolling code counter': Sending state 1273.000000
[12:48:35.078][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:35.100][D][ratgdo_secplus2:450]: [201918] Encode for transmit rolling=00004f9 fixed=020064d539 data=01010380
[12:48:35.100][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 02 19 65 9A 01 24 92 5C 26 15 6A 53 9C AD 76 B7]
[12:48:35.116][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:35.269][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:35.290][D][ratgdo_secplus2:450]: [202108] Encode for transmit rolling=00004f9 fixed=020064d539 data=01000380
[12:48:35.291][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 02 19 65 9A 01 24 92 5D 26 15 6A 53 9C AD 36 B7]
[12:48:35.389][W][ratgdo.number:093]: Updating Rolling code counter to 1274.000000
[12:48:35.396][D][number:012]: 'Rolling code counter': Sending state 1274.000000
[12:48:36.440][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:36.630][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:36.963][D][ratgdo_secplus2:450]: [203459] Encode for transmit rolling=00004fa fixed=020064d539 data=01010380
[12:48:36.963][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 59 08 00 05 68 04 12 07 95 2E 35 6E 2E 56 8A 60]
[12:48:36.963][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:36.963][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:36.963][D][ratgdo_secplus2:450]: [203645] Encode for transmit rolling=00004fa fixed=020064d539 data=01000380
[12:48:36.963][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 59 08 00 05 68 04 12 03 95 2E 35 6E 2E 56 9A 60]
[12:48:36.963][W][ratgdo.number:093]: Updating Rolling code counter to 1275.000000
[12:48:36.963][D][number:012]: 'Rolling code counter': Sending state 1275.000000
[12:48:38.158][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:38.200][D][ratgdo_secplus2:450]: [204999] Encode for transmit rolling=00004fb fixed=020064d539 data=01010380
[12:48:38.200][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 58 24 B2 4C 4C 96 5B 22 86 1C 6E 6A 9C 8D A6 42]
[12:48:38.210][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:38.349][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:38.370][D][ratgdo_secplus2:450]: [205188] Encode for transmit rolling=00004fb fixed=020064d539 data=01000380
[12:48:38.370][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 58 24 B2 4C 4C 96 5B 26 86 1C 6E 6A 9C 8D B6 42]
[12:48:38.406][W][ratgdo.number:093]: Updating Rolling code counter to 1276.000000
[12:48:38.420][D][number:012]: 'Rolling code counter': Sending state 1276.000000
[12:48:39.700][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:39.732][D][ratgdo_secplus2:450]: [206540] Encode for transmit rolling=00004fc fixed=020064d539 data=01010380
[12:48:39.732][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 26 1A 69 3C 4A 6D 36 95 65 2A A5 6E 2E C4 CA 60]
[12:48:39.745][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:39.891][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:39.904][D][ratgdo_secplus2:450]: [206729] Encode for transmit rolling=00004fc fixed=020064d539 data=01000380
[12:48:39.904][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 26 1A 69 3C 4A 6D 36 97 65 2A A5 6E 2E C4 DA 60]
[12:48:39.942][W][ratgdo.number:093]: Updating Rolling code counter to 1277.000000
[12:48:39.949][D][number:012]: 'Rolling code counter': Sending state 1277.000000
[12:48:41.414][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:41.440][D][ratgdo_secplus2:450]: [208082] Encode for transmit rolling=00004fd fixed=020064d539 data=01010380
[12:48:41.441][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 25 2D B6 51 FC B6 5B 2A 56 1C 4E 5C 5C A9 86 81]
[12:48:41.441][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:41.441][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:41.441][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:41.441][D][ratgdo_secplus2:450]: [208271] Encode for transmit rolling=00004fd fixed=020064d539 data=01000380
[12:48:41.463][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 25 2D B6 51 FC B6 5B 28 56 1C 4E 5C 5C A9 A6 81]
[12:48:41.489][W][ratgdo.number:093]: Updating Rolling code counter to 1278.000000
[12:48:41.489][D][number:012]: 'Rolling code counter': Sending state 1278.000000
[12:48:42.784][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:42.808][D][ratgdo_secplus2:450]: [209624] Encode for transmit rolling=00004fe fixed=020064d539 data=01010380
[12:48:42.808][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 90 16 CB 2E 26 5B 2D B5 05 28 B5 08 EA 16 9B CB]
[12:48:42.820][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:43.002][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:43.918][D][ratgdo_secplus2:450]: [209815] Encode for transmit rolling=00004fe fixed=020064d539 data=01000380
[12:48:43.918][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 90 16 CB 2E 26 5B 2D B7 05 28 B5 08 EA 16 DB CB]
[12:48:43.918][W][ratgdo.number:093]: Updating Rolling code counter to 1279.000000
[12:48:43.918][D][number:012]: 'Rolling code counter': Sending state 1279.000000
[12:48:44.333][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:44.398][D][ratgdo_secplus2:450]: [211167] Encode for transmit rolling=00004ff fixed=020064d539 data=01010380
[12:48:44.399][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 8A 2F B6 F8 4D F6 DF 78 A6 1D 6A 51 D5 8D 76 B7]
[12:48:44.399][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:44.517][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:44.553][D][ratgdo_secplus2:450]: [211355] Encode for transmit rolling=00004ff fixed=020064d539 data=01000380
[12:48:44.553][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 8A 2F B6 F8 4D F6 DF 7C A6 1D 6A 51 D5 8D 36 B7]
[12:48:44.572][W][ratgdo.number:093]: Updating Rolling code counter to 1280.000000
[12:48:44.572][D][number:012]: 'Rolling code counter': Sending state 1280.000000
[12:48:45.877][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:45.892][D][ratgdo_secplus2:450]: [212708] Encode for transmit rolling=0000500 fixed=020064d539 data=01010380
[12:48:45.892][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 99 00 80 02 90 80 48 07 9A 2E B7 6E 2E 56 83 44]
[12:48:45.904][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:46.064][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:46.097][D][ratgdo_secplus2:450]: [212900] Encode for transmit rolling=0000500 fixed=020064d539 data=01000380
[12:48:46.097][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 99 00 80 02 90 80 48 05 9A 2E B7 6E 2E 56 93 44]
[12:48:46.272][W][ratgdo.number:093]: Updating Rolling code counter to 1281.000000
[12:48:46.272][D][number:012]: 'Rolling code counter': Sending state 1281.000000
[12:48:46.400][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:47.448][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:47.466][D][ratgdo_secplus2:450]: [214252] Encode for transmit rolling=0000501 fixed=020064d539 data=01010380
[12:48:47.466][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 98 04 82 4B B4 12 01 27 90 35 CA D8 F1 3B 3D BF]
[12:48:47.466][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:47.632][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:47.639][D][ratgdo_secplus2:450]: [214443] Encode for transmit rolling=0000501 fixed=020064d539 data=01000380
[12:48:47.639][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 98 04 82 4B B4 12 01 25 90 35 CA D8 F1 3B 2D BF]
[12:48:47.653][W][ratgdo.number:093]: Updating Rolling code counter to 1282.000000
[12:48:47.653][D][number:012]: 'Rolling code counter': Sending state 1282.000000
[12:48:49.021][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:49.041][D][ratgdo_secplus2:450]: [215794] Encode for transmit rolling=0000502 fixed=020064d539 data=01010380
[12:48:49.041][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 42 0B 2C B5 6B 2C 92 5C 40 31 99 B5 73 73 7D BF]
[12:48:49.041][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:49.153][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:49.175][D][ratgdo_secplus2:450]: [215983] Encode for transmit rolling=0000502 fixed=020064d539 data=01000380
[12:48:49.175][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 42 0B 2C B5 6B 2C 92 58 40 31 99 B5 73 73 6D BF]
[12:48:49.207][W][ratgdo.number:093]: Updating Rolling code counter to 1283.000000
[12:48:49.207][D][number:012]: 'Rolling code counter': Sending state 1283.000000
[12:48:50.496][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:50.595][D][ratgdo_secplus2:450]: [217335] Encode for transmit rolling=0000503 fixed=020064d539 data=01010380
[12:48:50.595][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 12 49 03 B0 41 24 95 21 1C 4A 43 95 89 E4 B7]
[12:48:50.601][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:50.689][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:50.710][D][ratgdo_secplus2:450]: [217526] Encode for transmit rolling=0000503 fixed=020064d539 data=01000380
[12:48:50.710][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 41 12 49 03 B0 41 24 91 21 1C 4A 43 95 89 A4 B7]
[12:48:50.737][W][ratgdo.number:093]: Updating Rolling code counter to 1284.000000
[12:48:50.745][D][number:012]: 'Rolling code counter': Sending state 1284.000000
[12:48:51.386][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:52.042][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:52.074][D][ratgdo_secplus2:450]: [218880] Encode for transmit rolling=0000504 fixed=020064d539 data=01010380
[12:48:52.074][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 10 32 DB 29 FE DB 2D B5 10 15 CA DE 35 BB 0D A4]
[12:48:52.169][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:52.241][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:52.263][D][ratgdo_secplus2:450]: [219070] Encode for transmit rolling=0000504 fixed=020064d539 data=01000380
[12:48:52.263][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 10 32 DB 29 FE DB 2D B4 10 15 CA DE 35 BB 2D A4]
[12:48:52.287][W][ratgdo.number:093]: Updating Rolling code counter to 1285.000000
[12:48:52.287][D][number:012]: 'Rolling code counter': Sending state 1285.000000
[12:48:53.582][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:53.615][D][ratgdo_secplus2:450]: [220422] Encode for transmit rolling=0000505 fixed=020064d539 data=01010380
[12:48:53.616][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 0A 3D F6 F3 25 B6 DF 78 01 07 0B F7 15 E9 64 B4]
[12:48:53.620][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:53.775][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:53.785][D][ratgdo_secplus2:450]: [220613] Encode for transmit rolling=0000505 fixed=020064d539 data=01000380
[12:48:53.785][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 0A 3D F6 F3 25 B6 DF 79 01 07 0B F7 15 E9 24 B4]
[12:48:53.823][W][ratgdo.number:093]: Updating Rolling code counter to 1286.000000
[12:48:53.832][D][number:012]: 'Rolling code counter': Sending state 1286.000000
[12:48:55.157][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:55.185][D][ratgdo_secplus2:450]: [221965] Encode for transmit rolling=0000506 fixed=020064d539 data=01010380
[12:48:55.185][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 65 29 34 D8 DD A4 DA 6A 60 31 DA D8 F5 A9 7D BF]
[12:48:55.185][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:55.315][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:55.349][D][ratgdo_secplus2:450]: [222155] Encode for transmit rolling=0000506 fixed=020064d539 data=01000380
[12:48:55.349][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 65 29 34 D8 DD A4 DA 68 60 31 DA D8 F5 A9 6D BF]
[12:48:55.370][W][ratgdo.number:093]: Updating Rolling code counter to 1287.000000
[12:48:55.379][D][number:012]: 'Rolling code counter': Sending state 1287.000000
[12:48:56.388][D][esp8266.preferences:238]: Saving preferences to flash...
[12:48:56.666][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:56.688][D][ratgdo_secplus2:450]: [223506] Encode for transmit rolling=0000507 fixed=020064d539 data=01010380
[12:48:56.688][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 64 3F ED FC 4F ED FE FC 51 15 4E 4E 15 8D 14 81]
[12:48:56.701][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:56.908][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:57.012][D][ratgdo_secplus2:450]: [223696] Encode for transmit rolling=0000507 fixed=020064d539 data=01000380
[12:48:57.012][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 64 3F ED FC 4F ED FE FE 51 15 4E 4E 15 8D 34 81]
[12:48:57.012][W][ratgdo.number:093]: Updating Rolling code counter to 1288.000000
[12:48:57.012][D][number:012]: 'Rolling code counter': Sending state 1288.000000
[12:48:58.223][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:58.276][D][ratgdo_secplus2:450]: [225051] Encode for transmit rolling=0000508 fixed=020064d539 data=01010380
[12:48:58.276][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 25 B2 D3 BD 96 59 63 AA 2A B5 AC 6B 56 19 41]
[12:48:58.276][D][ratgdo:508]: Ensure door command, setup door command retry
[12:48:58.461][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:48:58.497][D][ratgdo_secplus2:450]: [225239] Encode for transmit rolling=0000508 fixed=020064d539 data=01000380
[12:48:58.498][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 AA 25 B2 D3 BD 96 59 61 AA 2A B5 AC 6B 56 59 41]
[12:48:58.498][W][ratgdo.number:093]: Updating Rolling code counter to 1289.000000
[12:48:58.498][D][number:012]: 'Rolling code counter': Sending state 1289.000000
[12:48:59.757][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:48:59.775][D][ratgdo_secplus2:450]: [226591] Encode for transmit rolling=0000509 fixed=020064d539 data=01010380
[12:48:59.775][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 01 00 08 D0 20 82 07 A0 31 DC 88 B1 3B AD 92]
[12:48:59.795][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:00.031][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:00.287][D][ratgdo_secplus2:450]: [226781] Encode for transmit rolling=0000509 fixed=020064d539 data=01000380
[12:49:00.287][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A9 01 00 08 D0 20 82 05 A0 31 DC 88 B1 3B ED 92]
[12:49:00.287][W][ratgdo.number:093]: Updating Rolling code counter to 1290.000000
[12:49:00.287][D][number:012]: 'Rolling code counter': Sending state 1290.000000
[12:49:01.298][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:01.336][D][ratgdo_secplus2:450]: [228138] Encode for transmit rolling=000050a fixed=020064d539 data=01010380
[12:49:01.336][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 54 3F FF 7A DE FB EF B9 50 38 F8 85 30 1F 5D A4]
[12:49:01.336][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:01.385][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:01.502][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:01.605][D][ratgdo_secplus2:450]: [228327] Encode for transmit rolling=000050a fixed=020064d539 data=01000380
[12:49:01.606][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 54 3F FF 7A DE FB EF BD 50 38 F8 85 30 1F 7D A4]
[12:49:01.761][W][ratgdo.number:093]: Updating Rolling code counter to 1291.000000
[12:49:01.761][D][number:012]: 'Rolling code counter': Sending state 1291.000000
[12:49:02.921][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:02.928][D][ratgdo_secplus2:450]: [229682] Encode for transmit rolling=000050b fixed=020064d539 data=01010380
[12:49:02.928][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 08 04 17 61 20 82 47 41 17 4A FC D5 E1 34 99]
[12:49:02.928][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:03.031][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:03.046][D][ratgdo_secplus2:450]: [229872] Encode for transmit rolling=000050b fixed=020064d539 data=01000380
[12:49:03.046][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 52 08 04 17 61 20 82 43 41 17 4A FC D5 E1 24 99]
[12:49:03.087][W][ratgdo.number:093]: Updating Rolling code counter to 1292.000000
[12:49:03.177][D][number:012]: 'Rolling code counter': Sending state 1292.000000
[12:49:04.385][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:04.422][D][ratgdo_secplus2:450]: [231223] Encode for transmit rolling=000050c fixed=020064d539 data=01010380
[12:49:04.422][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 1A 69 3C 43 49 A4 95 20 30 DC 1A B0 1B AD 92]
[12:49:04.429][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:04.573][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:04.602][D][ratgdo_secplus2:450]: [231412] Encode for transmit rolling=000050c fixed=020064d539 data=01000380
[12:49:04.602][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 21 1A 69 3C 43 49 A4 97 20 30 DC 1A B0 1B ED 92]
[12:49:04.657][W][ratgdo.number:093]: Updating Rolling code counter to 1293.000000
[12:49:04.657][D][number:012]: 'Rolling code counter': Sending state 1293.000000
[12:49:05.929][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:05.974][D][ratgdo_secplus2:450]: [232764] Encode for transmit rolling=000050d fixed=020064d539 data=01010380
[12:49:05.974][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 37 DF 75 67 DB ED B0 11 11 CA 96 15 29 44 84]
[12:49:05.974][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:06.112][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:06.127][D][ratgdo_secplus2:450]: [232952] Encode for transmit rolling=000050d fixed=020064d539 data=01000380
[12:49:06.127][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 20 37 DF 75 67 DB ED B2 11 11 CA 96 15 29 64 84]
[12:49:06.162][W][ratgdo.number:093]: Updating Rolling code counter to 1294.000000
[12:49:06.178][D][number:012]: 'Rolling code counter': Sending state 1294.000000
[12:49:06.487][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:07.475][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:07.499][D][ratgdo_secplus2:450]: [234303] Encode for transmit rolling=000050e fixed=020064d539 data=01010380
[12:49:07.499][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 86 1B 64 B1 EB 2D B6 4E 80 23 D8 B5 F3 3B 7D BF]
[12:49:07.499][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:07.653][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:07.673][D][ratgdo_secplus2:450]: [234493] Encode for transmit rolling=000050e fixed=020064d539 data=01000380
[12:49:07.673][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 86 1B 64 B1 EB 2D B6 4A 80 23 D8 B5 F3 3B 6D BF]
[12:49:07.712][W][ratgdo.number:093]: Updating Rolling code counter to 1295.000000
[12:49:07.720][D][number:012]: 'Rolling code counter': Sending state 1295.000000
[12:49:09.121][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:09.229][D][ratgdo_secplus2:450]: [235849] Encode for transmit rolling=000050f fixed=020064d539 data=01010380
[12:49:09.229][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 85 3D B7 DC 5D F6 DB EA 61 31 5A 90 D5 3B 34 9F]
[12:49:09.229][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:09.286][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:09.286][D][ratgdo_secplus2:450]: [236037] Encode for transmit rolling=000050f fixed=020064d539 data=01000380
[12:49:09.286][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 85 3D B7 DC 5D F6 DB EE 61 31 5A 90 D5 3B 24 9F]
[12:49:09.286][W][ratgdo.number:093]: Updating Rolling code counter to 1296.000000
[12:49:09.286][D][number:012]: 'Rolling code counter': Sending state 1296.000000
[12:49:10.551][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:10.573][D][ratgdo_secplus2:450]: [237389] Encode for transmit rolling=0000510 fixed=020064d539 data=01010380
[12:49:10.573][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A4 3F FF F7 2F DF 7F B9 4A 28 BD 07 28 1E CF 74]
[12:49:10.590][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:10.746][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:10.764][D][ratgdo_secplus2:450]: [237581] Encode for transmit rolling=0000510 fixed=020064d539 data=01000380
[12:49:10.764][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A4 3F FF F7 2F DF 7F BB 4A 28 BD 07 28 1E DF 74]
[12:49:10.791][W][ratgdo.number:093]: Updating Rolling code counter to 1297.000000
[12:49:10.799][D][number:012]: 'Rolling code counter': Sending state 1297.000000
[12:49:11.381][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:12.099][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:12.115][D][ratgdo_secplus2:450]: [238936] Encode for transmit rolling=0000511 fixed=020064d539 data=01010380
[12:49:12.115][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A2 08 04 9A 99 04 12 47 40 33 98 B1 F1 73 7D BF]
[12:49:12.131][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:12.296][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:12.317][D][ratgdo_secplus2:450]: [239126] Encode for transmit rolling=0000511 fixed=020064d539 data=01000380
[12:49:12.317][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A2 08 04 9A 99 04 12 45 40 33 98 B1 F1 73 6D BF]
[12:49:12.342][W][ratgdo.number:093]: Updating Rolling code counter to 1298.000000
[12:49:12.369][D][number:012]: 'Rolling code counter': Sending state 1298.000000
[12:49:13.672][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:13.679][D][ratgdo_secplus2:450]: [240479] Encode for transmit rolling=0000512 fixed=020064d539 data=01010380
[12:49:13.679][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 49 00 40 27 22 08 04 07 A0 38 D8 8A B0 3B AD 92]
[12:49:13.679][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:13.850][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:13.984][D][ratgdo_secplus2:450]: [240668] Encode for transmit rolling=0000512 fixed=020064d539 data=01000380
[12:49:13.984][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 49 00 40 27 22 08 04 03 A0 38 D8 8A B0 3B ED 92]
[12:49:13.984][W][ratgdo.number:093]: Updating Rolling code counter to 1299.000000
[12:49:13.984][D][number:012]: 'Rolling code counter': Sending state 1299.000000
[12:49:15.235][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:15.246][D][ratgdo_secplus2:450]: [242020] Encode for transmit rolling=0000513 fixed=020064d539 data=01010380
[12:49:15.246][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 48 34 9A 6E 06 9A 4D 21 91 31 5A 98 D5 A9 74 9F]
[12:49:15.246][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:15.376][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:15.500][D][ratgdo_secplus2:450]: [242210] Encode for transmit rolling=0000513 fixed=020064d539 data=01000380
[12:49:15.500][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 48 34 9A 6E 06 9A 4D 25 91 31 5A 98 D5 A9 64 9F]
[12:49:15.500][W][ratgdo.number:093]: Updating Rolling code counter to 1300.000000
[12:49:15.500][D][number:012]: 'Rolling code counter': Sending state 1300.000000
[12:49:16.400][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:16.809][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:16.815][D][ratgdo_secplus2:450]: [243562] Encode for transmit rolling=0000514 fixed=020064d539 data=01010380
[12:49:16.815][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 16 1B 7D F2 93 6D F7 F8 80 23 98 B1 F3 3B 7D BF]
[12:49:16.815][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:16.913][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:16.934][D][ratgdo_secplus2:450]: [243750] Encode for transmit rolling=0000514 fixed=020064d539 data=01000380
[12:49:16.934][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 16 1B 7D F2 93 6D F7 F9 80 23 98 B1 F3 3B 6D BF]
[12:49:16.961][W][ratgdo.number:093]: Updating Rolling code counter to 1301.000000
[12:49:16.972][D][number:012]: 'Rolling code counter': Sending state 1301.000000
[12:49:18.265][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:18.282][D][ratgdo_secplus2:450]: [245104] Encode for transmit rolling=0000515 fixed=020064d539 data=01010380
[12:49:18.282][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 15 0D B6 9F 21 B6 9A 6A 61 11 4A 98 D5 3B 34 9F]
[12:49:18.384][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:18.459][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:18.478][D][ratgdo_secplus2:450]: [245294] Encode for transmit rolling=0000515 fixed=020064d539 data=01000380
[12:49:18.478][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 15 0D B6 9F 21 B6 9A 6B 61 11 4A 98 D5 3B 24 9F]
[12:49:18.503][W][ratgdo.number:093]: Updating Rolling code counter to 1302.000000
[12:49:18.511][D][number:012]: 'Rolling code counter': Sending state 1302.000000
[12:49:19.954][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:19.963][D][ratgdo_secplus2:450]: [246646] Encode for transmit rolling=0000516 fixed=020064d539 data=01010380
[12:49:19.963][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 80 34 DA 6A 86 9B 6D B3 10 31 C8 D7 35 BB 0D A4]
[12:49:19.963][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:20.008][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:20.008][D][ratgdo_secplus2:450]: [246835] Encode for transmit rolling=0000516 fixed=020064d539 data=01000380
[12:49:20.022][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 80 34 DA 6A 86 9B 6D B7 10 31 C8 D7 35 BB 2D A4]
[12:49:20.043][W][ratgdo.number:093]: Updating Rolling code counter to 1303.000000
[12:49:20.053][D][number:012]: 'Rolling code counter': Sending state 1303.000000
[12:49:21.350][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:21.369][D][ratgdo_secplus2:450]: [248187] Encode for transmit rolling=0000517 fixed=020064d539 data=01010380
[12:49:21.369][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 6A 0D 34 D1 DD A4 D3 4E 01 15 0A F3 95 E9 64 B4]
[12:49:21.402][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:21.527][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:21.566][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:21.566][D][ratgdo_secplus2:450]: [248376] Encode for transmit rolling=0000517 fixed=020064d539 data=01000380
[12:49:21.566][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 6A 0D 34 D1 DD A4 D3 4C 01 15 0A F3 95 E9 24 B4]
[12:49:21.587][W][ratgdo.number:093]: Updating Rolling code counter to 1304.000000
[12:49:21.598][D][number:012]: 'Rolling code counter': Sending state 1304.000000
[12:49:22.890][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:22.912][D][ratgdo_secplus2:450]: [249729] Encode for transmit rolling=0000518 fixed=020064d539 data=01010380
[12:49:22.912][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 05 2F F6 D7 25 B6 DB EA 60 31 5A 99 F5 A9 7D BF]
[12:49:22.929][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:23.102][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:23.111][D][ratgdo_secplus2:450]: [249919] Encode for transmit rolling=0000518 fixed=020064d539 data=01000380
[12:49:23.111][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 05 2F F6 D7 25 B6 DB EB 60 31 5A 99 F5 A9 6D BF]
[12:49:23.125][W][ratgdo.number:093]: Updating Rolling code counter to 1305.000000
[12:49:23.137][D][number:012]: 'Rolling code counter': Sending state 1305.000000
[12:49:24.433][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:24.454][D][ratgdo_secplus2:450]: [251270] Encode for transmit rolling=0000519 fixed=020064d539 data=01010380
[12:49:24.454][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 04 3F F7 F3 B7 FF FF 7A 51 1C 4A 5C 55 8D 14 81]
[12:49:24.467][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:24.676][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:24.698][D][ratgdo_secplus2:450]: [251461] Encode for transmit rolling=0000519 fixed=020064d539 data=01000380
[12:49:24.698][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 04 3F F7 F3 B7 FF FF 7B 51 1C 4A 5C 55 8D 34 81]
[12:49:24.698][W][ratgdo.number:093]: Updating Rolling code counter to 1306.000000
[12:49:24.698][D][number:012]: 'Rolling code counter': Sending state 1306.000000
[12:49:25.974][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:25.985][D][ratgdo_secplus2:450]: [252813] Encode for transmit rolling=000051a fixed=020064d539 data=01010380
[12:49:25.985][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 5A 25 B2 5E 05 B2 C9 63 00 33 D1 9E B3 7B 2D 92]
[12:49:26.008][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:26.247][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:26.253][D][ratgdo_secplus2:450]: [253003] Encode for transmit rolling=000051a fixed=020064d539 data=01000380
[12:49:26.253][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 5A 25 B2 5E 05 B2 C9 67 00 33 D1 9E B3 7B 6D 92]
[12:49:26.253][W][ratgdo.number:093]: Updating Rolling code counter to 1307.000000
[12:49:26.253][D][number:012]: 'Rolling code counter': Sending state 1307.000000
[12:49:26.383][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:27.603][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:27.731][D][ratgdo_secplus2:450]: [254362] Encode for transmit rolling=000051b fixed=020064d539 data=01010380
[12:49:27.731][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 59 01 00 85 28 04 12 07 A1 14 6A 51 D5 A9 E4 B7]
[12:49:27.731][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:27.732][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:27.732][D][ratgdo_secplus2:450]: [254550] Encode for transmit rolling=000051b fixed=020064d539 data=01000380
[12:49:27.732][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 59 01 00 85 28 04 12 03 A1 14 6A 51 D5 A9 A4 B7]
[12:49:27.824][W][ratgdo.number:093]: Updating Rolling code counter to 1308.000000
[12:49:27.824][D][number:012]: 'Rolling code counter': Sending state 1308.000000
[12:49:29.073][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:29.092][D][ratgdo_secplus2:450]: [255906] Encode for transmit rolling=000051c fixed=020064d539 data=01010380
[12:49:29.092][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 28 2C 92 51 F5 92 CB 22 90 31 DA 99 F5 3B 3D BF]
[12:49:29.110][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:29.256][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:29.276][D][ratgdo_secplus2:450]: [256095] Encode for transmit rolling=000051c fixed=020064d539 data=01000380
[12:49:29.276][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 28 2C 92 51 F5 92 CB 20 90 31 DA 99 F5 3B 2D BF]
[12:49:29.392][W][ratgdo.number:093]: Updating Rolling code counter to 1309.000000
[12:49:29.404][D][number:012]: 'Rolling code counter': Sending state 1309.000000
[12:49:30.611][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:30.632][D][ratgdo_secplus2:450]: [257450] Encode for transmit rolling=000051d fixed=020064d539 data=01010380
[12:49:30.632][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 26 1B 4D AE 0A 6D 36 95 81 15 43 DC 55 A9 34 99]
[12:49:30.651][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:30.826][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:30.965][D][ratgdo_secplus2:450]: [257640] Encode for transmit rolling=000051d fixed=020064d539 data=01000380
[12:49:30.965][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 26 1B 4D AE 0A 6D 36 97 81 15 43 DC 55 A9 24 99]
[12:49:30.965][W][ratgdo.number:093]: Updating Rolling code counter to 1310.000000
[12:49:30.965][D][number:012]: 'Rolling code counter': Sending state 1310.000000
[12:49:31.381][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:32.157][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:32.178][D][ratgdo_secplus2:450]: [258994] Encode for transmit rolling=000051e fixed=020064d539 data=01010380
[12:49:32.178][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 91 12 49 26 22 C9 64 95 20 38 F8 18 F0 1B AD 92]
[12:49:32.192][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:32.539][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:32.551][D][ratgdo_secplus2:450]: [259185] Encode for transmit rolling=000051e fixed=020064d539 data=01000380
[12:49:32.551][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 91 12 49 26 22 C9 64 97 20 38 F8 18 F0 1B ED 92]
[12:49:32.551][W][ratgdo.number:093]: Updating Rolling code counter to 1311.000000
[12:49:32.551][D][number:012]: 'Rolling code counter': Sending state 1311.000000
[12:49:33.704][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:33.720][D][ratgdo_secplus2:450]: [260537] Encode for transmit rolling=000051f fixed=020064d539 data=01010380
[12:49:33.720][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 90 32 5B 6F 26 5B 2D B5 11 11 48 D7 31 29 44 84]
[12:49:33.756][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:33.898][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:33.912][D][ratgdo_secplus2:450]: [260727] Encode for transmit rolling=000051f fixed=020064d539 data=01000380
[12:49:33.912][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 90 32 5B 6F 26 5B 2D B7 11 11 48 D7 31 29 64 84]
[12:49:33.946][W][ratgdo.number:093]: Updating Rolling code counter to 1312.000000
[12:49:33.956][D][number:012]: 'Rolling code counter': Sending state 1312.000000
[12:49:35.241][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:35.264][D][ratgdo_secplus2:450]: [262081] Encode for transmit rolling=0000520 fixed=020064d539 data=01010380
[12:49:35.264][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 46 1B 65 B5 7B 65 B6 4E 15 2E A7 69 EE D6 BA 7B]
[12:49:35.286][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:35.434][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:35.459][D][ratgdo_secplus2:450]: [262271] Encode for transmit rolling=0000520 fixed=020064d539 data=01000380
[12:49:35.459][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 46 1B 65 B5 7B 65 B6 4A 15 2E A7 69 EE D6 9A 7B]
[12:49:35.481][W][ratgdo.number:093]: Updating Rolling code counter to 1313.000000
[12:49:35.492][D][number:012]: 'Rolling code counter': Sending state 1313.000000
[12:49:36.436][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:36.801][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:36.887][D][ratgdo_secplus2:450]: [263624] Encode for transmit rolling=0000521 fixed=020064d539 data=01010380
[12:49:36.887][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 45 3D B6 D8 CD BE DB EA 06 1E 2F 65 DC CD F6 6F]
[12:49:36.887][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:36.974][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:36.995][D][ratgdo_secplus2:450]: [263811] Encode for transmit rolling=0000521 fixed=020064d539 data=01000380
[12:49:36.995][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 45 3D B6 D8 CD BE DB EE 06 1E 2F 65 DC CD B6 6F]
[12:49:37.022][W][ratgdo.number:093]: Updating Rolling code counter to 1314.000000
[12:49:37.035][D][number:012]: 'Rolling code counter': Sending state 1314.000000
[12:49:38.323][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:38.346][D][ratgdo_secplus2:450]: [265163] Encode for transmit rolling=0000522 fixed=020064d539 data=01010380
[12:49:38.346][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A0 37 DB 77 27 FB ED B0 65 0E B7 6F 2E C4 CA 60]
[12:49:38.362][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:38.514][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:38.539][D][ratgdo_secplus2:450]: [265354] Encode for transmit rolling=0000522 fixed=020064d539 data=01000380
[12:49:38.539][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A0 37 DB 77 27 FB ED B2 65 0E B7 6F 2E C4 DA 60]
[12:49:38.564][W][ratgdo.number:093]: Updating Rolling code counter to 1315.000000
[12:49:38.571][D][number:012]: 'Rolling code counter': Sending state 1315.000000
[12:49:39.886][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:39.900][D][ratgdo_secplus2:450]: [266706] Encode for transmit rolling=0000523 fixed=020064d539 data=01010380
[12:49:39.900][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 9A 0D 36 91 F9 36 93 4E 56 15 6A DE 5C A9 86 81]
[12:49:39.900][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:40.054][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:40.072][D][ratgdo_secplus2:450]: [266894] Encode for transmit rolling=0000523 fixed=020064d539 data=01000380
[12:49:40.072][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 9A 0D 36 91 F9 36 93 4C 56 15 6A DE 5C A9 A6 81]
[12:49:40.103][W][ratgdo.number:093]: Updating Rolling code counter to 1316.000000
[12:49:40.113][D][number:012]: 'Rolling code counter': Sending state 1316.000000
[12:49:41.454][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:41.462][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:41.462][D][ratgdo_secplus2:450]: [268246] Encode for transmit rolling=0000524 fixed=020064d539 data=01010380
[12:49:41.462][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 69 00 80 42 90 12 08 07 45 38 F4 03 28 1E CB E6]
[12:49:41.462][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:41.595][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:41.619][D][ratgdo_secplus2:450]: [268435] Encode for transmit rolling=0000524 fixed=020064d539 data=01000380
[12:49:41.619][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 69 00 80 42 90 12 08 05 45 38 F4 03 28 1E DB E6]
[12:49:41.645][W][ratgdo.number:093]: Updating Rolling code counter to 1317.000000
[12:49:41.652][D][number:012]: 'Rolling code counter': Sending state 1317.000000
[12:49:43.025][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:44.073][D][ratgdo_secplus2:450]: [269787] Encode for transmit rolling=0000525 fixed=020064d539 data=01010380
[12:49:44.073][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 04 82 0B B0 80 41 27 26 1D 6E D3 DC AD 76 B7]
[12:49:44.073][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:44.073][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:44.073][D][ratgdo_secplus2:450]: [269974] Encode for transmit rolling=0000525 fixed=020064d539 data=01000380
[12:49:44.073][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 04 82 0B B0 80 41 25 26 1D 6E D3 DC AD 36 B7]
[12:49:44.073][W][ratgdo.number:093]: Updating Rolling code counter to 1318.000000
[12:49:44.073][D][number:012]: 'Rolling code counter': Sending state 1318.000000
[12:49:44.598][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:44.651][D][ratgdo_secplus2:450]: [271329] Encode for transmit rolling=0000526 fixed=020064d539 data=01010380
[12:49:44.651][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 12 0D 36 97 21 24 D2 6A 96 1C 7C 02 98 8D E7 F2]
[12:49:44.651][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:44.741][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:44.741][D][ratgdo_secplus2:450]: [271516] Encode for transmit rolling=0000526 fixed=020064d539 data=01000380
[12:49:44.741][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 12 0D 36 97 21 24 D2 6B 96 1C 7C 02 98 8D F7 F2]
[12:49:44.795][W][ratgdo.number:093]: Updating Rolling code counter to 1319.000000
[12:49:44.795][D][number:012]: 'Rolling code counter': Sending state 1319.000000
[12:49:46.170][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:46.245][D][ratgdo_secplus2:450]: [272869] Encode for transmit rolling=0000527 fixed=020064d539 data=01010380
[12:49:46.245][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 11 12 4B 21 FA 49 64 95 88 23 D0 91 E3 72 5D 2D]
[12:49:46.245][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:46.245][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:46.245][D][ratgdo_secplus2:450]: [273057] Encode for transmit rolling=0000527 fixed=020064d539 data=01000380
[12:49:46.245][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 11 12 4B 21 FA 49 64 94 88 23 D0 91 E3 72 4D 2D]
[12:49:46.275][W][ratgdo.number:093]: Updating Rolling code counter to 1320.000000
[12:49:46.275][D][number:012]: 'Rolling code counter': Sending state 1320.000000
[12:49:46.387][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:47.576][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:47.588][D][ratgdo_secplus2:450]: [274413] Encode for transmit rolling=0000528 fixed=020064d539 data=01010380
[12:49:47.588][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 58 2C 92 4E 04 96 5B 22 25 2A B1 AE 2B 76 1B 08]
[12:49:47.614][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:47.764][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:47.786][D][ratgdo_secplus2:450]: [274603] Encode for transmit rolling=0000528 fixed=020064d539 data=01000380
[12:49:47.786][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 58 2C 92 4E 04 96 5B 26 25 2A B1 AE 2B 76 5B 08]
[12:49:47.814][W][ratgdo.number:093]: Updating Rolling code counter to 1321.000000
[12:49:47.820][D][number:012]: 'Rolling code counter': Sending state 1321.000000
[12:49:49.116][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:49.128][D][ratgdo_secplus2:450]: [275956] Encode for transmit rolling=0000529 fixed=020064d539 data=01010380
[12:49:49.128][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 56 1B 4D B1 FB 69 A6 95 16 1C EC 4C 5C 0D D7 E9]
[12:49:49.150][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:49.317][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:49.329][D][ratgdo_secplus2:450]: [276146] Encode for transmit rolling=0000529 fixed=020064d539 data=01000380
[12:49:49.329][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 56 1B 4D B1 FB 69 A6 91 16 1C EC 4C 5C 0D F7 E9]
[12:49:49.356][W][ratgdo.number:093]: Updating Rolling code counter to 1322.000000
[12:49:49.379][D][number:012]: 'Rolling code counter': Sending state 1322.000000
[12:49:50.661][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:50.704][D][ratgdo_secplus2:450]: [277498] Encode for transmit rolling=000052a fixed=020064d539 data=01010380
[12:49:50.704][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 01 02 08 2C CA 49 24 95 86 1E 6F 4E 1E 8D A6 42]
[12:49:50.710][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:50.891][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:50.909][D][ratgdo_secplus2:450]: [277688] Encode for transmit rolling=000052a fixed=020064d539 data=01000380
[12:49:50.909][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 01 02 08 2C CA 49 24 94 86 1E 6F 4E 1E 8D B6 42]
[12:49:50.909][W][ratgdo.number:093]: Updating Rolling code counter to 1323.000000
[12:49:50.909][D][number:012]: 'Rolling code counter': Sending state 1323.000000
[12:49:51.413][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:52.228][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:52.316][D][ratgdo_secplus2:450]: [279039] Encode for transmit rolling=000052b fixed=020064d539 data=01010380
[12:49:52.316][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 00 34 D2 65 EE DB 6D B3 68 27 83 B5 63 E0 51 2D]
[12:49:52.316][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:52.566][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:52.566][D][ratgdo_secplus2:450]: [279227] Encode for transmit rolling=000052b fixed=020064d539 data=01000380
[12:49:52.566][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 00 34 D2 65 EE DB 6D B2 68 27 83 B5 63 E0 41 2D]
[12:49:52.566][W][ratgdo.number:093]: Updating Rolling code counter to 1324.000000
[12:49:52.566][D][number:012]: 'Rolling code counter': Sending state 1324.000000
[12:49:53.740][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:53.753][D][ratgdo_secplus2:450]: [280581] Encode for transmit rolling=000052c fixed=020064d539 data=01010380
[12:49:53.753][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 8A 3D BE F8 CF F6 DF 78 55 2B 95 A3 AB 72 EB 3E]
[12:49:53.788][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:53.937][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:54.035][D][ratgdo_secplus2:450]: [280772] Encode for transmit rolling=000052c fixed=020064d539 data=01000380
[12:49:54.035][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 8A 3D BE F8 CF F6 DF 7C 55 2B 95 A3 AB 72 CB 3E]
[12:49:54.047][W][ratgdo.number:093]: Updating Rolling code counter to 1325.000000
[12:49:54.047][D][number:012]: 'Rolling code counter': Sending state 1325.000000
[12:49:55.294][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:55.318][D][ratgdo_secplus2:450]: [282124] Encode for transmit rolling=000052d fixed=020064d539 data=01010380
[12:49:55.319][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 89 02 00 23 A2 40 04 07 46 1C 6F 4A 9C C5 A6 42]
[12:49:55.319][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:55.482][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:55.499][D][ratgdo_secplus2:450]: [282313] Encode for transmit rolling=000052d fixed=020064d539 data=01000380
[12:49:55.499][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 89 02 00 23 A2 40 04 03 46 1C 6F 4A 9C C5 B6 42]
[12:49:55.608][W][ratgdo.number:093]: Updating Rolling code counter to 1326.000000
[12:49:55.608][D][number:012]: 'Rolling code counter': Sending state 1326.000000
[12:49:56.386][D][esp8266.preferences:238]: Saving preferences to flash...
[12:49:56.848][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:56.867][D][ratgdo_secplus2:450]: [283672] Encode for transmit rolling=000052e fixed=020064d539 data=01010380
[12:49:56.867][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 24 3F FF 75 67 FF 7F B9 A6 15 6A C1 DD 8D 76 B7]
[12:49:56.867][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:57.031][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:57.053][D][ratgdo_secplus2:450]: [283861] Encode for transmit rolling=000052e fixed=020064d539 data=01000380
[12:49:57.053][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 24 3F FF 75 67 FF 7F BB A6 15 6A C1 DD 8D 36 B7]
[12:49:57.081][W][ratgdo.number:093]: Updating Rolling code counter to 1327.000000
[12:49:57.081][D][number:012]: 'Rolling code counter': Sending state 1327.000000
[12:49:58.376][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:58.398][D][ratgdo_secplus2:450]: [285214] Encode for transmit rolling=000052f fixed=020064d539 data=01010380
[12:49:58.398][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 22 08 04 18 D1 24 12 47 98 07 13 B5 63 72 11 2D]
[12:49:58.414][D][ratgdo:508]: Ensure door command, setup door command retry
[12:49:58.573][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:49:58.598][D][ratgdo_secplus2:450]: [285405] Encode for transmit rolling=000052f fixed=020064d539 data=01000380
[12:49:58.598][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 22 08 04 18 D1 24 12 45 98 07 13 B5 63 72 01 2D]
[12:49:58.618][W][ratgdo.number:093]: Updating Rolling code counter to 1328.000000
[12:49:58.618][D][number:012]: 'Rolling code counter': Sending state 1328.000000
[12:49:59.955][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:49:59.964][D][ratgdo_secplus2:450]: [286757] Encode for transmit rolling=0000530 fixed=020064d539 data=01010380
[12:49:59.964][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 1A 69 21 F2 4D 34 95 85 28 F5 03 28 56 CB E6]
[12:49:59.964][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:00.113][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:00.132][D][ratgdo_secplus2:450]: [286947] Encode for transmit rolling=0000530 fixed=020064d539 data=01000380
[12:50:00.132][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 51 1A 69 21 F2 4D 34 91 85 28 F5 03 28 56 DB E6]
[12:50:00.157][W][ratgdo.number:093]: Updating Rolling code counter to 1329.000000
[12:50:00.171][D][number:012]: 'Rolling code counter': Sending state 1329.000000
[12:50:01.380][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:01.473][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:01.501][D][ratgdo_secplus2:450]: [288303] Encode for transmit rolling=0000531 fixed=020064d539 data=01010380
[12:50:01.501][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 37 DF 68 D6 DF 7D B0 66 1C 6E 03 9C 1F A7 F2]
[12:50:01.508][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:01.653][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:01.668][D][ratgdo_secplus2:450]: [288493] Encode for transmit rolling=0000531 fixed=020064d539 data=01000380
[12:50:01.668][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 50 37 DF 68 D6 DF 7D B4 66 1C 6E 03 9C 1F B7 F2]
[12:50:01.715][W][ratgdo.number:093]: Updating Rolling code counter to 1330.000000
[12:50:01.721][D][number:012]: 'Rolling code counter': Sending state 1330.000000
[12:50:03.008][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:03.030][D][ratgdo_secplus2:450]: [289848] Encode for transmit rolling=0000532 fixed=020064d539 data=01010380
[12:50:03.030][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A6 1B 69 3E 4A 4D 36 95 15 0E A5 68 EE D6 BA 7B]
[12:50:03.044][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:03.206][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:03.302][D][ratgdo_secplus2:450]: [290040] Encode for transmit rolling=0000532 fixed=020064d539 data=01000380
[12:50:03.303][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A6 1B 69 3E 4A 4D 36 97 15 0E A5 68 EE D6 9A 7B]
[12:50:03.303][W][ratgdo.number:093]: Updating Rolling code counter to 1331.000000
[12:50:03.303][D][number:012]: 'Rolling code counter': Sending state 1331.000000
[12:50:04.576][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:04.606][D][ratgdo_secplus2:450]: [291394] Encode for transmit rolling=0000533 fixed=020064d539 data=01010380
[12:50:04.606][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 25 B6 53 FC 96 5B 2A 06 0E 2E 65 5C CD F6 6F]
[12:50:04.606][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:04.743][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:04.775][D][ratgdo_secplus2:450]: [291583] Encode for transmit rolling=0000533 fixed=020064d539 data=01000380
[12:50:04.775][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 A5 25 B6 53 FC 96 5B 28 06 0E 2E 65 5C CD B6 6F]
[12:50:04.792][W][ratgdo.number:093]: Updating Rolling code counter to 1332.000000
[12:50:04.800][D][number:012]: 'Rolling code counter': Sending state 1332.000000
[12:50:06.103][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:06.120][D][ratgdo_secplus2:450]: [292938] Encode for transmit rolling=0000534 fixed=020064d539 data=01010380
[12:50:06.120][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 3F FF DC DD BF FF 7A A5 2B B5 3E 2B 56 1B 08]
[12:50:06.133][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:06.308][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:06.867][D][ratgdo_secplus2:450]: [293128] Encode for transmit rolling=0000534 fixed=020064d539 data=01000380
[12:50:06.867][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 84 3F FF DC DD BF FF 7E A5 2B B5 3E 2B 56 5B 08]
[12:50:06.867][W][ratgdo.number:093]: Updating Rolling code counter to 1333.000000
[12:50:06.868][D][number:012]: 'Rolling code counter': Sending state 1333.000000
[12:50:06.868][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:07.740][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:07.750][D][ratgdo_secplus2:450]: [294479] Encode for transmit rolling=0000535 fixed=020064d539 data=01010380
[12:50:07.750][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 0B 64 B1 6B 64 92 5C 96 18 7E 03 9C 8D E7 F2]
[12:50:07.750][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:07.828][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:07.843][D][ratgdo_secplus2:450]: [294668] Encode for transmit rolling=0000535 fixed=020064d539 data=01000380
[12:50:07.843][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 82 0B 64 B1 6B 64 92 58 96 18 7E 03 9C 8D F7 F2]
[12:50:07.888][W][ratgdo.number:093]: Updating Rolling code counter to 1334.000000
[12:50:07.919][D][number:012]: 'Rolling code counter': Sending state 1334.000000
[12:50:09.239][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:09.258][D][ratgdo_secplus2:450]: [296021] Encode for transmit rolling=0000536 fixed=020064d539 data=01010380
[12:50:09.258][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 19 00 82 0C 68 00 48 07 46 1C 2E 6E 1E C5 A6 42]
[12:50:09.258][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:09.375][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:09.393][D][ratgdo_secplus2:450]: [296210] Encode for transmit rolling=0000536 fixed=020064d539 data=01000380
[12:50:09.393][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 19 00 82 0C 68 00 48 06 46 1C 2E 6E 1E C5 B6 42]
[12:50:09.420][W][ratgdo.number:093]: Updating Rolling code counter to 1335.000000
[12:50:09.595][D][number:012]: 'Rolling code counter': Sending state 1335.000000
[12:50:10.813][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:10.990][D][ratgdo_secplus2:450]: [297564] Encode for transmit rolling=0000537 fixed=020064d539 data=01010380
[12:50:10.990][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 18 04 80 45 4C 92 01 27 28 2A 91 AC 63 52 8B 00]
[12:50:10.990][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:10.990][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:10.990][D][ratgdo_secplus2:450]: [297752] Encode for transmit rolling=0000537 fixed=020064d539 data=01000380
[12:50:10.990][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 18 04 80 45 4C 92 01 26 28 2A 91 AC 63 52 CB 00]
[12:50:10.996][W][ratgdo.number:093]: Updating Rolling code counter to 1336.000000
[12:50:10.996][D][number:012]: 'Rolling code counter': Sending state 1336.000000
[12:50:11.392][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:12.269][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:12.286][D][ratgdo_secplus2:450]: [299109] Encode for transmit rolling=0000538 fixed=020064d539 data=01010380
[12:50:12.286][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 0D 34 98 D9 36 92 6A 95 0E B7 67 2E 56 8A 60]
[12:50:12.387][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:12.460][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:12.471][D][ratgdo_secplus2:450]: [299298] Encode for transmit rolling=0000538 fixed=020064d539 data=01000380
[12:50:12.471][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 62 0D 34 98 D9 36 92 68 95 0E B7 67 2E 56 9A 60]
[12:50:12.511][W][ratgdo.number:093]: Updating Rolling code counter to 1337.000000
[12:50:12.527][D][number:012]: 'Rolling code counter': Sending state 1337.000000
[12:50:13.253][I][ota:117]: Boot seems successful, resetting boot loop counter.
[12:50:13.258][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:13.860][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:13.958][D][ratgdo_secplus2:450]: [300652] Encode for transmit rolling=0000539 fixed=020064d539 data=01010380
[12:50:13.958][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 12 49 2E 02 5B 24 95 86 0E 67 4E 9C 8D A6 42]
[12:50:13.958][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:14.001][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:14.065][D][ratgdo_secplus2:450]: [300841] Encode for transmit rolling=0000539 fixed=020064d539 data=01000380
[12:50:14.065][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 61 12 49 2E 02 5B 24 97 86 0E 67 4E 9C 8D B6 42]
[12:50:14.150][W][ratgdo.number:093]: Updating Rolling code counter to 1338.000000
[12:50:14.150][D][number:012]: 'Rolling code counter': Sending state 1338.000000
[12:50:15.386][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:15.528][D][ratgdo_secplus2:450]: [302194] Encode for transmit rolling=000053a fixed=020064d539 data=01010380
[12:50:15.528][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 08 34 93 41 FC 92 4D 21 26 1D 4E D1 DD AD 76 B7]
[12:50:15.528][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:15.559][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:15.559][D][ratgdo_secplus2:450]: [302381] Encode for transmit rolling=000053a fixed=020064d539 data=01000380
[12:50:15.580][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 08 34 93 41 FC 92 4D 20 26 1D 4E D1 DD AD 36 B7]
[12:50:15.650][W][ratgdo.number:093]: Updating Rolling code counter to 1339.000000
[12:50:15.650][D][number:012]: 'Rolling code counter': Sending state 1339.000000
[12:50:16.389][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:16.895][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:16.935][D][ratgdo_secplus2:450]: [303733] Encode for transmit rolling=000053b fixed=020064d539 data=01010380
[12:50:16.936][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 06 1B 2C BE 03 6D B6 4E 18 23 93 BB A3 F2 21 36]
[12:50:16.936][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:17.103][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:17.143][D][ratgdo_secplus2:450]: [303922] Encode for transmit rolling=000053b fixed=020064d539 data=01000380
[12:50:17.143][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 06 1B 2C BE 03 6D B6 4F 18 23 93 BB A3 F2 01 36]
[12:50:17.143][W][ratgdo.number:093]: Updating Rolling code counter to 1340.000000
[12:50:17.143][D][number:012]: 'Rolling code counter': Sending state 1340.000000
[12:50:18.456][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:18.471][D][ratgdo_secplus2:450]: [305273] Encode for transmit rolling=000053c fixed=020064d539 data=01010380
[12:50:18.471][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 95 29 36 91 F9 36 9A 6A 05 2A BC 0C 68 16 9B CB]
[12:50:18.471][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:18.676][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:18.685][D][ratgdo_secplus2:450]: [305463] Encode for transmit rolling=000053c fixed=020064d539 data=01000380
[12:50:18.685][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 95 29 36 91 F9 36 9A 68 05 2A BC 0C 68 16 DB CB]
[12:50:18.685][W][ratgdo.number:093]: Updating Rolling code counter to 1341.000000
[12:50:18.685][D][number:012]: 'Rolling code counter': Sending state 1341.000000
[12:50:19.987][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:20.019][D][ratgdo_secplus2:450]: [306814] Encode for transmit rolling=000053d fixed=020064d539 data=01010380
[12:50:20.019][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3F EF BC 6B 7F BE FC A6 1C 4E C3 DC 8D 76 B7]
[12:50:20.019][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:20.248][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:20.464][D][ratgdo_secplus2:450]: [307004] Encode for transmit rolling=000053d fixed=020064d539 data=01000380
[12:50:20.464][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 94 3F EF BC 6B 7F BE FE A6 1C 4E C3 DC 8D 36 B7]
[12:50:20.464][W][ratgdo.number:093]: Updating Rolling code counter to 1342.000000
[12:50:20.464][D][number:012]: 'Rolling code counter': Sending state 1342.000000
[12:50:21.382][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:21.520][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:21.538][D][ratgdo_secplus2:450]: [308355] Encode for transmit rolling=000053e fixed=020064d539 data=01010380
[12:50:21.538][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 25 96 D3 FD B6 59 63 56 1D 6E DC 5C A9 86 81]
[12:50:21.554][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:21.707][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:21.822][D][ratgdo_secplus2:450]: [308546] Encode for transmit rolling=000053e fixed=020064d539 data=01000380
[12:50:21.822][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 2A 25 96 D3 FD B6 59 61 56 1D 6E DC 5C A9 A6 81]
[12:50:21.846][W][ratgdo.number:093]: Updating Rolling code counter to 1343.000000
[12:50:21.846][D][number:012]: 'Rolling code counter': Sending state 1343.000000
[12:50:23.075][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:23.105][D][ratgdo_secplus2:450]: [309899] Encode for transmit rolling=000053f fixed=020064d539 data=01010380
[12:50:23.105][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 29 01 04 08 90 00 82 07 48 21 98 B1 71 3A 5D 2D]
[12:50:23.105][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:23.252][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:23.280][D][ratgdo_secplus2:450]: [310087] Encode for transmit rolling=000053f fixed=020064d539 data=01000380
[12:50:23.280][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 29 01 04 08 90 00 82 05 48 21 98 B1 71 3A 4D 2D]
[12:50:23.297][W][ratgdo.number:093]: Updating Rolling code counter to 1344.000000
[12:50:23.394][D][number:012]: 'Rolling code counter': Sending state 1344.000000
[12:50:24.603][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:24.624][D][ratgdo_secplus2:450]: [311440] Encode for transmit rolling=0000540 fixed=020064d539 data=01010380
[12:50:24.624][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 24 82 03 B4 80 41 27 58 22 91 33 A2 56 7B 36]
[12:50:24.641][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:24.791][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:24.815][D][ratgdo_secplus2:450]: [311631] Encode for transmit rolling=0000540 fixed=020064d539 data=01000380
[12:50:24.815][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 68 24 82 03 B4 80 41 25 58 22 91 33 A2 56 5B 36]
[12:50:24.850][W][ratgdo.number:093]: Updating Rolling code counter to 1345.000000
[12:50:24.861][D][number:012]: 'Rolling code counter': Sending state 1345.000000
[12:50:26.159][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:26.168][D][ratgdo_secplus2:450]: [312986] Encode for transmit rolling=0000541 fixed=020064d539 data=01010380
[12:50:26.169][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 66 3B 6D FC 4B 7F B7 F8 49 05 0A FC 47 A8 14 0B]
[12:50:26.181][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:26.352][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:26.367][D][ratgdo_secplus2:450]: [313175] Encode for transmit rolling=0000541 fixed=020064d539 data=01000380
[12:50:26.367][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 66 3B 6D FC 4B 7F B7 FA 49 05 0A FC 47 A8 04 0B]
[12:50:26.404][W][ratgdo.number:093]: Updating Rolling code counter to 1346.000000
[12:50:26.404][D][number:012]: 'Rolling code counter': Sending state 1346.000000
[12:50:26.426][D][esp8266.preferences:238]: Saving preferences to flash...
[12:50:27.689][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010103
[12:50:27.737][D][ratgdo_secplus2:450]: [314528] Encode for transmit rolling=0000542 fixed=020064d539 data=01010380
[12:50:27.737][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 11 16 59 20 DE 49 64 95 A9 07 23 77 06 E0 C2 25]
[12:50:27.751][D][ratgdo:508]: Ensure door command, setup door command retry
[12:50:27.880][D][ratgdo_secplus2:420]: Send command: DOOR_ACTION, data: 010003
[12:50:27.901][D][ratgdo_secplus2:450]: [314718] Encode for transmit rolling=0000542 fixed=020064d539 data=01000380
[12:50:27.901][D][ratgdo_secplus2:320]: Sending packet: [55 01 00 11 16 59 20 DE 49 64 94 A9 07 23 77 06 E0 82 25]
[12:50:27.927][W][ratgdo.number:093]: Updating Rolling code counter to 1347.000000
[12:50:27.935][D][number:012]: 'Rolling code counter': Sending state 1347.000000
[12:50:28.277][D][ratgdo_secplus2:279]: Baud: 9708
[12:50:28.303][D][ratgdo_secplus2:320]: Received packet: : [55 01 00 80 12 4B 64 37 8D 6D BE 62 01 04 51 B9 56 12 62]
[12:50:28.317][D][ratgdo_secplus2:358]: [315143] received rolling=0025a1f fixed=007ccab006 data=42600381
[12:50:28.317][D][ratgdo_secplus2:366]: cmd=081 (STATUS) byte2=42 byte1=60 nibble=3
[12:50:28.343][D][ratgdo_secplus2:373]: Handle command: STATUS
[12:50:28.343][D][ratgdo:095]: Door state=STOPPED
[12:50:28.343][D][ratgdo:329]: [315166] Position update: 16.935575
[12:50:28.370][D][ratgdo:555]: Cancelling position callbacks
[12:50:28.370][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.370][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.396][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.396][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.396][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.418][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.418][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.441][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.441][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.441][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.472][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.473][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.473][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.473][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.499][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.515][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.537][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.537][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.638][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.638][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.638][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.638][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.656][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.656][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.656][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.656][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.656][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.657][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.700][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.700][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.700][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.714][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.725][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.725][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.749][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.775][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.775][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.775][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.775][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.808][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.818][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.843][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.843][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.855][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.855][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.855][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.855][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.865][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.891][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.891][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.901][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.901][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.901][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.901][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.923][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.924][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.947][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.947][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.947][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.980][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.980][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.980][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.980][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.994][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.994][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.994][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.994][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.994][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.027][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.027][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.027][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.051][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.051][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.051][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.051][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.160][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.160][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.160][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.179][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.198][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.198][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.198][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.210][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.210][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.222][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.222][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.245][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.245][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.269][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.269][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.269][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.292][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.292][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.292][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.292][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.326][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.326][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.326][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.326][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.326][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.352][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.352][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.352][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.368][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.368][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.368][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.368][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.389][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.389][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.416][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.416][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.416][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.442][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.442][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.442][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.442][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.442][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.464][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.464][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.464][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.464][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.491][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.491][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.491][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.516][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:29.516][D][ratgdo:204]: Light state=ON
[12:50:29.516][D][ratgdo:210]: Lock state=UNLOCKED
[12:50:29.516][D][ratgdo:189]: Learn state=INACTIVE
[12:50:29.516][D][ratgdo_secplus2:415]: Done handle command: STATUS
[12:50:29.524][W][component:214]: Component ratgdo took a long time for an operation (1.20 s).
[12:50:29.524][W][component:215]: Components should block for at most 20-30ms.
[12:50:29.548][D][cover:170]: 'Door' - Publishing:
[12:50:29.548][D][cover:173]:   Position: 100%
[12:50:29.548][D][cover:186]:   Current Operation: IDLE
[12:50:29.548][D][switch:012]: 'Status door' Turning ON.
[12:50:31.381][D][esp8266.preferences:238]: Saving preferences to flash...

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

Its a DC battery one. But its in in Hawaii so cold is not the issue for sure

@mariusmuja
Copy link
Collaborator

Its a DC battery one. But its in in Hawaii so cold is not the issue for sure

Haha... yeah. Then cold just makes the issue worse (or it's completely unrelated).

@mariusmuja
Copy link
Collaborator

It did eventually get unstuck and than crash: Here is the full log:

It got unstuck because the 5min status message arrived and door status changed. I pushed the fix to optimistically update door position after the open/close duration which would have avoided this bug. But I'm thinking to remove ensure door action as well....

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

The flurry of Received door status, cancel door command retry looks like it had multiple of them ?... haven't dug into it though as I'm still testing other things

[12:50:28.370][D][ratgdo:555]: Cancelling position callbacks
[12:50:28.370][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.370][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.396][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.396][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.396][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.397][D][ratgdo:504]: Received door status, cancel door command retry
[12:50:28.418][D][ratgdo:504]: Received door status, cancel door command retry

@mariusmuja
Copy link
Collaborator

The flurry of Received door status, cancel door command retry looks like it had multiple of them ?... haven't dug into it though as I'm still testing other things

Yeah, I'm just looking why there's so many Received door status, cancel door command retry...

@mariusmuja
Copy link
Collaborator

Yeah, I'm just looking why there's so many Received door status, cancel door command retry...

There's just one "door_command_retry" timer callback, but there are many callbacks in this->on_door_state_.

@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

All seems good now

I'll clean things up and get this merged

@bdraco bdraco marked this pull request as ready for review January 19, 2024 23:23
@bdraco bdraco changed the title feat: v1 support feat: Security Plus v1 support Jan 19, 2024
@bdraco bdraco merged commit f3f8f96 into main Jan 19, 2024
9 of 10 checks passed
@bdraco bdraco deleted the sec_plus_v1 branch January 19, 2024 23:24
@bdraco
Copy link
Member Author

bdraco commented Jan 19, 2024

Awesome work @mariusmuja 🐬 👍 🥇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants