Skip to content

Commit

Permalink
Merge pull request #88 from StefCoders/main
Browse files Browse the repository at this point in the history
Added Apple Vision Pro before AppleTV in AppleJuice
  • Loading branch information
n0xa committed Feb 2, 2024
2 parents 19475df + 3b15420 commit 71228c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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

0 comments on commit 71228c8

Please sign in to comment.