A simple Pong game with STM32F407VET6 black board (Seeed Arch Max) and ILI9341 320x240 TFT display.

Dependencies:   mbed ILI9341_STM32F4

A simple Pong game with STM32F407VET6 black board (compatible with Seed Arch Max) and ILI9341 320x240 TFT display.

Connect the SPI interface of an ILI9341 320x240 TFT display to the STM32F407VET6 board (Seeed Arch Max) as follows:

ILI9341 TFTSPI interfaceSTM32F407VET6
VCC+5V
GNDGND
CSPB_7
RESETPB_8
D/CPB_6
SDI(MOSI)PB_5
SCKPB_3
LEDover a 56 ohm resistor+5V
SDO(MISO)PB_4

Ball.h

Committer:
hudakz
Date:
2019-04-15
Revision:
1:971e721f6ef2
Parent:
0:887dd664eca0

File content as of revision 1:971e721f6ef2:

#ifndef BALL_H
#define BALL_H

#include "mbed.h"
#include "tft.h"

class Racket;

class Ball
{
    int         size;
    float       velocity;
    uint16_t    color;
public:
    Ball(int s = 8, float v = 4, uint16_t clr = TFT_WHITE );
    void   home();
    bool   move(Racket* rkt);
    void   paint();
    void   vec2_norm(float& x, float &y);
    
    int    xPos;
    int    yPos;
    int    xPosOld;
    int    yPosOld;
    float  xDir;
    float  yDir;
    
};
#endif // BALL_H