Add time to close to commands (#19)

This commit is contained in:
J. Nick Koston 2023-06-25 11:28:16 -05:00 committed by GitHub
parent eb6f40c060
commit 073b5440cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -133,6 +133,8 @@ namespace ratgdo {
return "pair_2";
case 0x48b:
return "get_openings";
case 0x40a:
return "ttc"; // Time to close
default:
return "unknown";
}

View File

@ -101,8 +101,11 @@ namespace ratgdo {
PAIR_2 = 0x400,
PAIR_2_RESP = 0x401,
TTC = 0x40a, // Time to close
GET_OPENINGS = 0x48b,
OPENINGS = 0x48c,
};
}