選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Kurt Eckhardt c1bc90c9b6 Pacaman - Show depends on libraries, remove unneeded header 5年前
..
icons Added Pacman demo 5年前
Pacman-Teensy-BT.ino Pacaman - Show depends on libraries, remove unneeded header 5年前
PacmanTiles.h Added Pacman demo 5年前
README.md Added Pacman demo 5年前
crntsc.h Added Pacman demo 5年前
crpal.h Added Pacman demo 5年前
font8x8.cpp Added Pacman demo 5年前

README.md

Pacman-Arduino-Due / Modified for Teensy 3.6 and T4.x

Pacman Game for Arduino Due with tft ILI9341 and VGA output support

Pacman Game on Arduino Due with ILI9341 and VGA support (available 2 outputs at the same time), playable with keypad, 5 sample levels, VGA output is 240x320, source code avaliable on Github, Licensed under MIT License.

Original Pacman sketch modified to use a Teensy 3.6/T4 with ILI9341_t3n and USBHost_t36 libraries. Intended as demo for the incorporating BT or Serial gamepads such as the PS3 and PS4 into a user application.

Originally posted on: Arduino Forum:

http://forum.arduino.cc/index.php?topic=375394.0

Video:

https://www.youtube.com/watch?v=2Hdzr6m4QdU

/******************************************************************************/
/*                                                                            */
/*  PACMAN GAME FOR TEENSY                                                    */
/*                                                                            */
/******************************************************************************/
/*  Copyright (c) 2014  Dr. NCX (mirracle.mxx@gmail.com)                      */
/*                                                                            */
/* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL              */
/* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED              */
/* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR    */
/* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES      */
/* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,     */
/* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,     */
/* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS        */
/* SOFTWARE.                                                                  */
/*                                                                            */
/*  MIT license, all text above must be included in any redistribution.       */
/******************************************************************************/
/*  Original Pacman sketch modified to use a Teensy 3.6/T4 with ILI9341_t3n   */
/*  and USBHost_t36 libraries.  Intended as demo for the incorporating BT     */
/*  or Serial gamepads such as the PS3 and PS4 into a user application.       */
/*  The original version for the Arduino Due and SNES controllers can be      */
/*  found at                                                                  */
/*  https://forum.arduino.cc/index.php?topic=375394.0                         */
/*  and                                                                       */
/*  https://github.com/DrNCXCortex/Pacman-Arduino-Due                         */
/*                                                                            */
/******************************************************************************/
/*  ILI9341:                                                                  */
/*----------------------------------------------------------------------------*/
/*   8 = RST                                                                  */
/*   9 = D/C                                                                  */
/*  10 = CS                                                                   */
/*  can be changed at user discretion                                         */
/*----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------*/
/*  KEYPAD:                                                                   */
/*----------------------------------------------------------------------------*/
/*  PS3: button START/Pause                                                   */
/*       button SELECT                                                        */
/*       button A/Diamond                                                     */
/*       button B /Circle                                                     */
/*       button UP                                                            */
/*       button DOWN                                                          */
/*       button LEFT                                                          */
/*       button RIGHT                                                         */
/*                                                                            */
/*  PS4: button START/Pause = Share on PS4                                    */
/*       button SELECT = Options on PS4                                       */
/*       button A/Square                                                      */
/*       button B /Circle                                                     */
/*       button UP                                                            */
/*       button DOWN                                                          */
/*       button LEFT                                                          */
/*       button RIGHT                                                         */
/*                                                                            *//******************************************************************************/