Add the 74HC595 Snake game project

This commit is contained in:
2026-06-12 12:40:08 -04:00
parent 200156c432
commit 0d82ec0c83
24 changed files with 1007 additions and 0 deletions

12
08-74HC595-Snake/matrix.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef _MATRIX_H_
#define _MATRIX_H_
#include <stdint.h>
int pokeMatrixPixel(uint8_t x, uint8_t y);
void resetMatrix();
void displayMatrix();
void writeLEDMatrix(uint8_t row, uint8_t col);
void testMatrix();
#endif // _MATRIX_H_