Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ Command|Description
`0x75`|RLS → GM (TBC)
`0x76`|[Visual Indicators](gm/76.md)
`0x77`|GM → RLS (TBC)
`0x78`|Memory
`0x78`|[Memory](gm/78.md)
`0x79`|[Door/Lid Status Request](gm/79.md)
`0x7a`|[Door/Lid Status](gm/7a.md)
`0x7c`|SHD → GLO (TBC)
Expand Down
32 changes: 32 additions & 0 deletions gm/78.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# `0x76` Memory Seats

GM `0x00` → Broadcast `0xbf`

This command is used to trigger the seat memory functions.

### Related Commands

- no related commands found as of now

### Example Frames

00 04 BF 78 01 C2
00 04 BF 78 02 C1
00 04 BF 78 04 C7
00 04 BF 78 00 C3

## Parameters

Fixed length. One byte bitfield.

MEMORY_BUTTON_RELEASED = 0b0000_0000

MEMORY_ONE_PRESSED = 0b0000_0001
MEMORY_TWO_PRESSED = 0b0000_0010
MEMORY_THREE_PRESSED = 0b0000_0100

MEMORY_SAVE_PRESSED = 0b0000_1000 (?? to be confirmed)

## Example

Pressing then releasing memory button two will trigger 00 04 BF 78 02 C1 (MEMORY_TWO_PRESSED) then 00 04 BF 78 00 C3 (MEMORY_BUTTON_RELEASED)