Skip to content

Commit 1a40441

Browse files
committed
headers
1 parent 0123ffa commit 1a40441

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

SerialPrograms/Source/PokemonLGPE/PokemonLGPE_Settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Pokemon Let's Go Settings
22
*
3-
* From: https://github.com/PokemonAutomation/Arduino-Source
3+
* From: https://github.com/PokemonAutomation/
44
*
55
*/
66

SerialPrograms/Source/PokemonLGPE/PokemonLGPE_Settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Pokemon Let's Go Settings
22
*
3-
* From: https://github.com/PokemonAutomation/Arduino-Source
3+
* From: https://github.com/PokemonAutomation/
44
*
55
*/
66

SerialPrograms/Source/PokemonLGPE/Programs/PokemonLGPE_GameEntry.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Game Entry
22
*
3-
* From: https://github.com/PokemonAutomation/Arduino-Source
3+
* From: https://github.com/PokemonAutomation/
44
*
55
*/
66

@@ -36,8 +36,7 @@ bool reset_game_to_gamemenu(
3636
tolerate_update_menu
3737
){
3838
//Handle Right Joycon attempting to update
39-
//If no update, this will open the All Software menu
40-
//The active game will be closed from there
39+
//Need detector for update prompt
4140
//pbf_move_joystick(context, 0, 128, 100ms, 10ms);
4241
//pbf_move_joystick(context, 0, 128, 100ms, 10ms);
4342
//pbf_press_button(context, BUTTON_A, 100ms, 10ms);
@@ -69,8 +68,8 @@ bool gamemenu_to_ingame(
6968
pbf_mash_button(context, BUTTON_A, mash_duration);
7069
context.wait_for_all_requests();
7170

72-
//White screen, Pikachu/Eevee running across the screen.
73-
//Mash A at then end.
71+
//White screen, Pikachu/Eevee running across the screen. Mash will not speed it up.
72+
//Mash A at then end to enter continue screen
7473
BlackScreenOverWatcher detector(COLOR_RED, {0.2, 0.2, 0.6, 0.6});
7574
stream.log("Waiting to enter game...");
7675
int ret = run_until<JoyconContext>(

SerialPrograms/Source/PokemonLGPE/Programs/PokemonLGPE_GameEntry.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Game Entry
22
*
3-
* From: https://github.com/PokemonAutomation/Arduino-Source
3+
* From: https://github.com/PokemonAutomation/
44
*
55
*/
66

SerialPrograms/Source/PokemonLGPE/Programs/ShinyHunting/PokemonLGPE_AlolanTrade.cpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ void AlolanTrade::program(SingleSwitchProgramEnvironment& env, CancellableScope&
136136
/*
137137
WARNING: JOYCON TEST PROGRAM. Not well tested. Bare minimum in general.
138138
139-
Only works with Right joycon atm. Do not update right joycon.
139+
Only works with Right joycon atm. Do not update right joycon. Decline the update before running this.
140140
141141
Right joycon required for home button (this means no on-switch screenshots).
142142
Also don't remap any of the buttons in the switch button mapping settings. Yet? Could use this to add Home and Screenshot.
@@ -157,7 +157,7 @@ void AlolanTrade::program(SingleSwitchProgramEnvironment& env, CancellableScope&
157157
"you don't have any pokemon your trading partner wants"
158158
detect dialog box, detect yes/no confirm box
159159
actual enter game and start screen detectors
160-
menu detectors, reset game from home, etc.
160+
menu detectors, etc.
161161
get rid of all this blindly mashing A in general...so need everything really.
162162
*/
163163

@@ -180,11 +180,10 @@ void AlolanTrade::program(SingleSwitchProgramEnvironment& env, CancellableScope&
180180

181181
//To check pokemon in menu boxes
182182
//Open menu - always defaults to center (Party)
183-
/* Menu:
184-
Play with Partner
185-
Pokedex - Bag - Party - Communicate - Save (these all have a colored line under when selected)
186-
(Press Y for options)
187-
*/
183+
//Menu:
184+
// --Play with Partner--(centered)
185+
//Pokedex - Bag - Party - Communicate - Save (these all have a colored line under when selected + an arrow to indicate)
186+
//(Press Y for options)
188187

189188
//Wait a bit.
190189
pbf_wait(context, 2500ms);

0 commit comments

Comments
 (0)