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
- Host: GitHub
- URL: https://github.com/viktorstrate/arduino-chess
- Owner: viktorstrate
- Created: 2019-02-20T23:03:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-09T10:53:42.000Z (over 6 years ago)
- Last Synced: 2025-03-28T05:23:36.013Z (7 months ago)
- Topics: arduino, arduino-library, chess, chess-ai, chess-engine
- Language: C++
- Homepage:
- Size: 32.2 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 computerRun 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
```