Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Added Apple Vision Pro before AppleTV in AppleJuice #88

Merged
merged 3 commits into from
Feb 2, 2024
Merged
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
1 change: 1 addition & 0 deletions applejuice.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ uint8_t HomepodSetup[23] = {0x16, 0xff, 0x4c, 0x00, 0x04, 0x04, 0x2a, 0x00, 0x00
uint8_t SetupNewPhone[23] = {0x16, 0xff, 0x4c, 0x00, 0x04, 0x04, 0x2a, 0x00, 0x00, 0x00, 0x0f, 0x05, 0xc1, 0x09, 0x60, 0x4c, 0x95, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00};
uint8_t TransferNumber[23] = {0x16, 0xff, 0x4c, 0x00, 0x04, 0x04, 0x2a, 0x00, 0x00, 0x00, 0x0f, 0x05, 0xc1, 0x02, 0x60, 0x4c, 0x95, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00};
uint8_t TVColorBalance[23] = {0x16, 0xff, 0x4c, 0x00, 0x04, 0x04, 0x2a, 0x00, 0x00, 0x00, 0x0f, 0x05, 0xc1, 0x1e, 0x60, 0x4c, 0x95, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00};
uint8_t AppleVisionPro[23] = {0x16, 0xff, 0x4c, 0x00, 0x04, 0x04, 0x2a, 0x00, 0x00, 0x00, 0x0f, 0x05, 0xc1, 0x24, 0x60, 0x4c, 0x95, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00};
uint8_t* data;
int deviceType = 0;

Expand Down
6 changes: 5 additions & 1 deletion m5stick-nemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ void btmenu_loop() {
}

MENU ajmenu[] = {
{ TXT_BACK, 29},
{ TXT_BACK, 30},
{ "AirPods", 1},
{ TXT_AJ_TRANSF_NM, 27},
{ "AirPods Pro", 2},
Expand All @@ -1100,6 +1100,7 @@ MENU ajmenu[] = {
{ "Beats Studio Pro", 15},
{ "Beats Fit Pro", 16},
{ "Beats Studio Buds+", 17},
{ "Apple Vision Pro", 29},
{ "AppleTV Setup", 18},
{ "AppleTV Pair", 19},
{ "AppleTV New User", 20},
Expand Down Expand Up @@ -1227,6 +1228,9 @@ void aj_loop(){
data = SetupNewPhone;
break;
case 29:
data = AppleVisionPro;
break;
case 30:
rstOverride = false;
isSwitching = true;
current_proc = 1;
Expand Down
Loading