Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cristiancristea00/tic-tac-toe

Tic-Tac-Toe game with AI implemented on a Raspberry Pi Pico board and a 20x4 LED display.
https://github.com/cristiancristea00/tic-tac-toe

arduino arm artificial-intelligence bitbanging cortex-m0 i2c keypad-matrix keypad4x4 lcd-display lcd2004 lcd20x4 led-display microcontroller pioasm raspberry-pi raspberry-pi-pico tic-tac-toe tm1637 tm1637display

Last synced: 28 days ago
JSON representation

Tic-Tac-Toe game with AI implemented on a Raspberry Pi Pico board and a 20x4 LED display.

Awesome Lists containing this project

README

        

# Raspberry Pi Pico - Tic Tac Toe Game

## Build

After you clone the repo you run the following commands to build the executable. You have to have installed *CMake* and *Make*. Also you need to have the SDK on your system and point `PICO_SDK_PATH` to it.
```sh
export PICO_SDK_PATH='/Path/to/SDK'
```
```sh
cd tic-tac-toe
```
```sh
mkdir build
```
```sh
cd build
```
```sh
cmake ..
```
```sh
make -j4
```
### How to connect the LCD, LEDs and Keypad to the board
![Fritzing drawing](img/fritzing.png)