Files
arduino_pong/pong_render.h
andrea 31891bbc0e
Some checks failed
Arduino Pong CD / release (push) Has been cancelled
minors
2026-03-15 20:02:27 +01:00

10 lines
239 B
C

#ifndef PONG_RENDER_H
#define PONG_RENDER_H
#include <Arduino.h>
#include "Arduino_LED_Matrix.h"
void render_matrix(byte frame[MATRIX_HEIGHT][MATRIX_WIDTH], int p1_start, int p2_start, int &need_refresh, int ball_x, int ball_y);
#endif