-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from JayFoxRox/xboxpy
Remove xbox module and use xboxpy in all scripts
- Loading branch information
Showing
32 changed files
with
13 additions
and
3,425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
# Xbox python scripts | ||
# Xbox Python-Scripts | ||
|
||
This is a collection of scripts to access various Xbox hardware. | ||
|
||
|
||
## Usage for updated scripts | ||
## Getting Started | ||
|
||
[Install xboxpy](https://github.com/XboxDev/xboxpy) and read its usage documentation. | ||
Once you configured your xboxpy connection, you should be able to run these scripts. | ||
|
||
|
||
## Usage for legacy scripts | ||
[Install xboxpy](https://github.com/XboxDev/xboxpy#install) and read its usage documentation. | ||
|
||
* All stuff is internally imported by the `xbox` module. So: `import xbox` | ||
* You can define the interface you want to use using environment variable 'XBOX_IF': | ||
* 'XBDM' (default) | ||
* 'nxdk-rdt` | ||
* 'gdb' (auto-detected if the `gdb` module exists) | ||
* Some interfaces will also allow you to specify the target Xbox using the 'XBOX' environment variable ('Host:Port') | ||
|
||
Not all interfaces support all functionality at this point. | ||
Once you configured your xboxpy connection, you should be able to run these scripts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
# Prints information about some of the Xbox timers | ||
|
||
from xboxpy.xboxpy import * | ||
from xboxpy import * | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
# Takes a screenshot | ||
|
||
from xbox import * | ||
from xboxpy import * | ||
|
||
from PIL import Image | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
bin_index = 0 | ||
|
||
|
||
from xbox import * | ||
from xboxpy import * | ||
|
||
from concurrent.futures import * | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.