Compare commits
18 Commits
280e681ba6
...
v1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a938adff31 | ||
|
|
1f143520a8 | ||
|
|
cbdfcce354 | ||
|
|
66957b5e19 | ||
|
|
f12af76845 | ||
|
|
8906b2eab5 | ||
|
|
5b94e21f21 | ||
|
|
8a7bd2b192 | ||
|
|
487756978f | ||
|
|
bf2b794421 | ||
|
|
f0e8a7f05f | ||
|
|
2727dfb0ef | ||
|
|
bb79c885a9 | ||
|
|
cd9d4289ef | ||
|
|
d15ae7ba57 | ||
|
|
1337269d32 | ||
|
|
69386ba4da | ||
|
|
455014fdff |
37
.github/workflows/cd.yml
vendored
Normal file
37
.github/workflows/cd.yml
vendored
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
name: Arduino Pong CD
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Arduino CLI
|
||||||
|
run: |
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
|
||||||
|
echo "./bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
|
- name: Install Board Core and Libs
|
||||||
|
run: |
|
||||||
|
arduino-cli core update-index
|
||||||
|
arduino-cli core install arduino:renesas_uno
|
||||||
|
|
||||||
|
- name: Build Binary
|
||||||
|
run: make compile
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
build/*.bin
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
@@ -3,17 +3,29 @@ name: Arduino Pong CI
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
- 'arduino_pong.ino'
|
||||||
|
- 'Makefile'
|
||||||
|
- '.github/workflows/ci.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Arduino CLI
|
- name: Setup Arduino CLI
|
||||||
uses: arduino/setup-arduino-cli@v1
|
#uses: arduino/setup-arduino-cli@v2
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
|
||||||
|
echo "./bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: Install UNO R4 Core
|
- name: Install UNO R4 Core
|
||||||
run: |
|
run: |
|
||||||
@@ -21,4 +33,5 @@ jobs:
|
|||||||
arduino-cli core install arduino:renesas_uno
|
arduino-cli core install arduino:renesas_uno
|
||||||
|
|
||||||
- name: Compile Sketch (via Makefile)
|
- name: Compile Sketch (via Makefile)
|
||||||
run: make compile
|
shell: bash
|
||||||
|
run: make prepare_and_compile
|
||||||
|
|||||||
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
.secrets
|
||||||
|
.arduino_cache/
|
||||||
|
bin/
|
||||||
|
build/
|
||||||
61
Makefile
61
Makefile
@@ -1,16 +1,63 @@
|
|||||||
|
PORT ?= /dev/ttyACM0
|
||||||
|
BOARD = arduino:renesas_uno:unor4wifi
|
||||||
|
SKETCH = arduino_pong.ino
|
||||||
|
CACHE_DIR = $(shell pwd)/.arduino_cache
|
||||||
|
BIN_DIR = $(shell pwd)/bin
|
||||||
|
CLI = $(BIN_DIR)/arduino-cli --config-file $(CACHE_DIR)/arduino-cli.yaml
|
||||||
|
|
||||||
|
YELLOW := \033[0;33m
|
||||||
|
GREEN := \033[0;32m
|
||||||
|
CLEAR := \033[0m
|
||||||
|
|
||||||
|
prepare:
|
||||||
|
@mkdir -p $(BIN_DIR)
|
||||||
|
@mkdir -p $(CACHE_DIR)
|
||||||
|
@if [ ! -f $(BIN_DIR)/arduino-cli ]; then \
|
||||||
|
echo -e "📥 $(YELLOW)Downloading arduino-cli...$(CLEAR)"; \
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=$(BIN_DIR) sh; \
|
||||||
|
fi
|
||||||
|
@if [ ! -f $(CACHE_DIR)/arduino-cli.yaml ]; then \
|
||||||
|
echo -e "⚙️ $(YELLOW)Initializing local config...$(CLEAR)"; \
|
||||||
|
$(CLI) config init --dest-dir $(CACHE_DIR); \
|
||||||
|
$(CLI) config set directories.data $(CACHE_DIR)/data; \
|
||||||
|
$(CLI) config set directories.downloads $(CACHE_DIR)/downloads; \
|
||||||
|
$(CLI) config set directories.user $(CACHE_DIR)/user; \
|
||||||
|
fi
|
||||||
|
@if ! $(CLI) core list | grep -q "arduino:renesas_uno"; then \
|
||||||
|
echo -e "$(YELLOW)📥 Installing board core...$(CLEAR)"; \
|
||||||
|
$(CLI) core update-index; \
|
||||||
|
$(CLI) core install arduino:renesas_uno; \
|
||||||
|
fi
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
arduino-cli compile -b arduino:renesas_uno:unor4wifi ./arduino_pong.ino
|
@mkdir -p build
|
||||||
|
@echo -e "$(GREEN)🛠️ Compiling $(SKETCH)...$(CLEAR)"
|
||||||
|
@$(CLI) compile -b $(BOARD) --output-dir build $(SKETCH)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo -e "$(GREEN)🛠️ Removing build files...$(CLEAR)"
|
||||||
|
@rm -rf build/
|
||||||
|
|
||||||
|
prepare_and_compile:
|
||||||
|
make prepare --no-print-directory
|
||||||
|
make compile --no-print-directory
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
arduino-cli upload -b arduino:renesas_uno:unor4wifi -p /dev/ttyACM0
|
@echo -e "$(GREEN)🚀 Uploading $(SKETCH)...$(CLEAR)"
|
||||||
|
@$(CLI) upload -b $(BOARD) -p $(PORT)
|
||||||
|
|
||||||
upload_verbose:
|
upload_verbose:
|
||||||
arduino-cli upload -b arduino:renesas_uno:unor4wifi -p /dev/ttyACM0 -v
|
@echo -e "$(GREEN)🚀 Uploading (Verbose) $(SKETCH)...$(CLEAR)"
|
||||||
|
@$(CLI) upload -b $(BOARD) -p $(PORT) -v
|
||||||
|
|
||||||
monitor:
|
monitor:
|
||||||
arduino-cli monitor -p /dev/ttyACM0
|
@$(CLI) monitor -p $(PORT)
|
||||||
|
|
||||||
run:
|
run:
|
||||||
make compile
|
make compile --no-print-directory
|
||||||
make upload
|
make upload --no-print-directory
|
||||||
make monitor
|
make monitor --no-print-directory
|
||||||
|
|
||||||
|
run_init:
|
||||||
|
make prepare --no-print-directory
|
||||||
|
make run --no-print-directory
|
||||||
|
|||||||
@@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
A classic implementation of the Pong game developed specifically for the Arduino UNO R4 WiFi, utilizing its built-in 12×8 LED matrix as the game screen.
|
A classic implementation of the Pong game developed specifically for the Arduino UNO R4 WiFi, utilizing its built-in 12×8 LED matrix as the game screen.
|
||||||
|
|
||||||
|
[](https://github.com/Dea1993/arduino_pong/actions/workflows/ci.yml)
|
||||||
|
[](https://github.com/Dea1993/arduino_pong/actions/workflows/cd.yml)
|
||||||
|
[](LICENSE)
|
||||||
|
|
||||||
# 📹 Preview
|
# 📹 Preview
|
||||||
|
|
||||||

|

|
||||||
@@ -54,9 +58,11 @@ This project includes a `Makefile` to automate the workflow using `arduino-cli`.
|
|||||||
### Commands
|
### Commands
|
||||||
| Command | Description |
|
| Command | Description |
|
||||||
| :--- | :--- |
|
| :--- | :--- |
|
||||||
|
| `make prepare` | Downloads arduino-cli locally and installs the UNO R4 core. |
|
||||||
| `make compile` | Compiles the sketch without uploading. |
|
| `make compile` | Compiles the sketch without uploading. |
|
||||||
| `make upload` | Uploads the compiled binary to `/dev/ttyACM0`. |
|
| `make upload` | Uploads the compiled binary to `/dev/ttyACM0`. |
|
||||||
| `make monitor` | Opens the Serial Monitor. |
|
| `make monitor` | Opens the Serial Monitor. |
|
||||||
| `make run` | Full cycle: Compile + Upload + Monitor. |
|
| `make run` | Full cycle: Compile + Upload + Monitor. |
|
||||||
|
| `make run_init` | Full first-time setup: Prepare env + Compile + Upload + Monitor. |
|
||||||
|
|
||||||
> **Note:** If your board is on a different port, edit the `Makefile` or override it: `make upload PORT=/dev/ttyUSB0`.
|
> **Note:** If your board is on a different port, edit the `Makefile` or override it: `make upload PORT=/dev/ttyUSB0`.
|
||||||
|
|||||||
@@ -4,12 +4,14 @@
|
|||||||
#define P1_BTN_BOTTOM 12
|
#define P1_BTN_BOTTOM 12
|
||||||
#define P2_BTN_UP 11
|
#define P2_BTN_UP 11
|
||||||
#define P2_BTN_BOTTOM 10
|
#define P2_BTN_BOTTOM 10
|
||||||
|
#define MATRIX_WIDTH 12
|
||||||
|
#define MATRIX_HEIGHT 8
|
||||||
|
|
||||||
// create LED matrix object
|
// create LED matrix object
|
||||||
ArduinoLEDMatrix matrix;
|
ArduinoLEDMatrix matrix;
|
||||||
|
|
||||||
// initial pong frame
|
// initial pong frame
|
||||||
byte frame[8][12] = {
|
byte frame[MATRIX_HEIGHT][MATRIX_WIDTH] = {
|
||||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
||||||
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
||||||
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
||||||
@@ -28,8 +30,8 @@ int p2_start= 4;
|
|||||||
int p2_end= 6;
|
int p2_end= 6;
|
||||||
|
|
||||||
// initials balls coordinates
|
// initials balls coordinates
|
||||||
int ball_reset_x=6;
|
int ball_reset_x= MATRIX_WIDTH / 2;
|
||||||
int ball_reset_y=3;
|
int ball_reset_y= MATRIX_HEIGHT / 2;
|
||||||
int ball_x= ball_reset_x;
|
int ball_x= ball_reset_x;
|
||||||
int ball_y= ball_reset_y;
|
int ball_y= ball_reset_y;
|
||||||
|
|
||||||
@@ -68,9 +70,8 @@ void render_matrix() {
|
|||||||
if (!need_refresh) return;
|
if (!need_refresh) return;
|
||||||
need_refresh= 0;
|
need_refresh= 0;
|
||||||
// clear
|
// clear
|
||||||
for (int x=0; x < 12; x++) {
|
for (int x=0; x < MATRIX_WIDTH; x++) {
|
||||||
for (int y=0; y < 8; y++) {
|
for (int y=0; y < MATRIX_HEIGHT; y++) {
|
||||||
frame[y][x]= 0;
|
|
||||||
frame[y][x]= 0;
|
frame[y][x]= 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -80,13 +81,13 @@ void render_matrix() {
|
|||||||
frame[i][0]= 1;
|
frame[i][0]= 1;
|
||||||
}
|
}
|
||||||
for (int i= p2_start; i < p2_start+bar_length; i++) {
|
for (int i= p2_start; i < p2_start+bar_length; i++) {
|
||||||
frame[i][11]= 1;
|
frame[i][MATRIX_WIDTH-1]= 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ball coords
|
// ball coords
|
||||||
frame[ball_y][ball_x]= 1;
|
frame[ball_y][ball_x]= 1;
|
||||||
|
|
||||||
matrix.renderBitmap(frame, 8, 12);
|
matrix.renderBitmap(frame, MATRIX_HEIGHT, MATRIX_WIDTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pong_move_p1() {
|
void pong_move_p1() {
|
||||||
@@ -136,7 +137,7 @@ void point_scored() {
|
|||||||
|
|
||||||
void move_ball() {
|
void move_ball() {
|
||||||
need_refresh= 1;
|
need_refresh= 1;
|
||||||
if (ball_x < 0 || ball_x > 11 || ball_y < 0 || ball_y > 7) {
|
if (ball_x < 0 || ball_x > MATRIX_WIDTH-1 || ball_y < 0 || ball_y > MATRIX_HEIGHT-1) {
|
||||||
// ball out of matrix limits
|
// ball out of matrix limits
|
||||||
ball_x= ball_reset_x;
|
ball_x= ball_reset_x;
|
||||||
ball_y= ball_reset_y;
|
ball_y= ball_reset_y;
|
||||||
@@ -158,7 +159,7 @@ void move_ball() {
|
|||||||
if (!ball_player_collision(p1_start)) {
|
if (!ball_player_collision(p1_start)) {
|
||||||
// else p2 score, reset board
|
// else p2 score, reset board
|
||||||
p2_score += 1;
|
p2_score += 1;
|
||||||
Serial.println("Player 2 Point");
|
Serial.println("Player 2 Scores");
|
||||||
point_scored();
|
point_scored();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@@ -166,11 +167,11 @@ void move_ball() {
|
|||||||
ball_move_x= ball_move_x * -1;
|
ball_move_x= ball_move_x * -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (ball_x == 11) {
|
else if (ball_x == MATRIX_WIDTH-1) {
|
||||||
if (!ball_player_collision(p2_start)) {
|
if (!ball_player_collision(p2_start)) {
|
||||||
// else p1 score, reset board
|
// else p1 score, reset board
|
||||||
p1_score += 1;
|
p1_score += 1;
|
||||||
Serial.println("Player 1 Point");
|
Serial.println("Player 1 Scores");
|
||||||
point_scored();
|
point_scored();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@@ -179,7 +180,7 @@ void move_ball() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ball_y == 0 || ball_y == 7) {
|
if (ball_y == 0 || ball_y == MATRIX_HEIGHT-1) {
|
||||||
// reverse y, go down
|
// reverse y, go down
|
||||||
ball_move_y= ball_move_y * -1;
|
ball_move_y= ball_move_y * -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user