add ability to recondition display

This commit is contained in:
liamcottle
2025-01-07 01:36:08 +13:00
parent 880b4a1126
commit 73a9c02ada
2 changed files with 47 additions and 1 deletions

View File

@@ -80,6 +80,7 @@ class RNode {
CMD_HASHES = 0x60;
CMD_FW_UPD = 0x61;
CMD_DISP_ROT = 0x67;
CMD_DISP_RCND = 0x68;
CMD_BT_CTRL = 0x46;
CMD_BT_PIN = 0x62;
@@ -758,6 +759,13 @@ class RNode {
]);
}
async startDisplayReconditioning() {
await this.sendKissCommand([
this.CMD_DISP_RCND,
0x01,
]);
}
}
class ROM {