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
Revision:
1:971e721f6ef2
Parent:
0:887dd664eca0
--- a/Ball.h	Thu Apr 11 20:18:15 2019 +0000
+++ b/Ball.h	Mon Apr 15 06:02:55 2019 +0000
@@ -10,18 +10,18 @@
 {
     int         size;
     float       velocity;
-    bool        gameOver;
     uint16_t    color;
-    Timeout     timeout;
 public:
-    Ball(int s = 8, float v = 8, uint16_t clr = TFT_WHITE );
+    Ball(int s = 8, float v = 4, uint16_t clr = TFT_WHITE );
+    void   home();
     bool   move(Racket* rkt);
-    void   newGame();
-    void   paint(uint16_t clr);
+    void   paint();
     void   vec2_norm(float& x, float &y);
     
     int    xPos;
-    int    yPos; 
+    int    yPos;
+    int    xPosOld;
+    int    yPosOld;
     float  xDir;
     float  yDir;