Skip to content

Commit

Permalink
Moved files into /src and /extras folder
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoHood committed Nov 22, 2015
1 parent 9e7a9a6 commit cafd9c9
Show file tree
Hide file tree
Showing 30 changed files with 27 additions and 27 deletions.
1 change: 1 addition & 0 deletions readme.md → Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Controller mode means that your Arduino can act as controller.

#####Todo:
* N64 rumble -> example
* N64 -> USB example

Download
========
Expand Down
1 change: 0 additions & 1 deletion examples/N64/N64_Test/N64_Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
N64_Test example
Enter any key into the serial monitor to start reading.
Press A on the controller to enable rumble.
*/

#include "Nintendo.h"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions N64.h → src/N64.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ typedef union{
uint32_t whole32[];

struct{
uint8_t buttons0 : 4;
uint8_t dpad : 4;
uint8_t buttons1 : 4;
uint8_t buttons0 : 4;
uint8_t cpad : 4;
uint8_t buttons1 : 4;
};

struct {
Expand Down
48 changes: 24 additions & 24 deletions Nintendo.cpp → src/Nintendo.cpp
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
/*
Copyright (c) 2014-2015 NicoHood
See the readme for credit to other people.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

#include "Nintendo.h"
/*
Copyright (c) 2014-2015 NicoHood
See the readme for credit to other people.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

#include "Nintendo.h"
File renamed without changes.

0 comments on commit cafd9c9

Please sign in to comment.