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

https://github.com/viktorstrate/arduino-chess

Chess engine for the Arduino microprocessor
https://github.com/viktorstrate/arduino-chess

arduino arduino-library chess chess-ai chess-engine

Last synced: 4 months ago
JSON representation

Chess engine for the Arduino microprocessor

Awesome Lists containing this project

README

          

# Arduino chess engine

> A simple chess engine based on the mini-max algorithm,
that can run on Arduinos as well as normal computers

## Build and run on computer

Run following commands in the project directory, to build the project.

```shell
$ cmake .
```

```shell
$ make
```

To run it

```shell
$ ./arduino_chess
```

> You might have to grant executable permissions for the file

```shell
$ chmod +x ./arduino_chess
```